67 lines
1.3 KiB
JavaScript
67 lines
1.3 KiB
JavaScript
var control_order = [// eslint-disable-line
|
|
{
|
|
text: "基础元件",
|
|
expand: false,
|
|
children: [
|
|
"label",
|
|
"textbox",
|
|
"hidden",
|
|
"textarea",
|
|
"date",
|
|
"button",
|
|
"select",
|
|
"textvalue",
|
|
"radiogroup",
|
|
"checkboxgroup",
|
|
"link",
|
|
"multipleselectlabel"
|
|
]
|
|
},
|
|
{
|
|
text: "文本元件",
|
|
expand: true,
|
|
children: [
|
|
"textbox",
|
|
"hidden",
|
|
"textarea",
|
|
"contenteditable",
|
|
"date"
|
|
]
|
|
},
|
|
{
|
|
text: "选择元件",
|
|
expand: false,
|
|
children: [
|
|
"select",
|
|
"textvalue",
|
|
"radiogroup",
|
|
"checkboxgroup"
|
|
]
|
|
},
|
|
{
|
|
text: "按钮元件",
|
|
expand: true,
|
|
children: [
|
|
"button",
|
|
"datactrls"
|
|
// "data-insert",
|
|
// "data-remove"
|
|
]
|
|
},
|
|
{
|
|
text: "上传元件",
|
|
expand: true,
|
|
children: [
|
|
"image",
|
|
"file",
|
|
]
|
|
},
|
|
{
|
|
text: "自定义元件",
|
|
expand: false,
|
|
children: [
|
|
"newTextbox",
|
|
"newLabel"
|
|
]
|
|
}
|
|
]; |