admin-page-generator-ws
Version:
a page-generator for vue admin
52 lines (51 loc) • 1.09 kB
JavaScript
export default {
type: "form",
name: "表单布局",
icon: "form",
belong: "normal",
columns: [
{
type: "action",
belong: "normal",
config: {},
columns: [
{
type: "button",
belong: "normal",
config: {
prop: "",
label: "返回",
icon: "el-icon-back",
url: "action://back",
btnStyle: "ghost",
condition: "",
role: "",
btnType: "button",
isCircle: false,
plain: false
}
},
{
type: "button",
belong: "normal",
config: {
prop: "",
label: "保存",
icon: "el-icon-circle-check",
url: "",
btnStyle: "ghost",
condition: "",
role: "",
btnType: "button",
isCircle: false,
plain: false
}
}
]
}
],
config: {
prop: "form",
editable: true
}
};