2019-04-30 11:11:25 +08:00
|
|
|
|
export default {
|
2019-11-07 10:41:14 +08:00
|
|
|
|
$schema: 'https://houtai.baidu.com/v2/schemas/page.json#',
|
|
|
|
|
title: '带边栏联动',
|
|
|
|
|
aside: {
|
|
|
|
|
type: 'form',
|
|
|
|
|
wrapWithPanel: false,
|
|
|
|
|
target: 'window', // 直接修改location,当然也可以直接指向某个组件。
|
2021-04-21 00:08:16 +08:00
|
|
|
|
submitOnInit: true,
|
2019-11-07 10:41:14 +08:00
|
|
|
|
controls: [
|
|
|
|
|
{
|
|
|
|
|
type: 'tree',
|
|
|
|
|
name: 'cat',
|
|
|
|
|
inputClassName: 'no-border',
|
|
|
|
|
submitOnChange: true,
|
2021-04-21 00:08:16 +08:00
|
|
|
|
selectFirst: true,
|
2019-11-07 10:41:14 +08:00
|
|
|
|
options: [
|
|
|
|
|
{
|
|
|
|
|
label: '分类1',
|
|
|
|
|
value: 'cat1'
|
|
|
|
|
},
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-11-07 10:41:14 +08:00
|
|
|
|
{
|
|
|
|
|
label: '分类2',
|
2021-04-05 12:46:18 +08:00
|
|
|
|
value: 'cat2',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
label: '分类 2.1',
|
|
|
|
|
value: 'cat2.1'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '分类 2.2',
|
|
|
|
|
value: 'cat2.2'
|
|
|
|
|
}
|
|
|
|
|
]
|
2019-11-07 10:41:14 +08:00
|
|
|
|
},
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-11-07 10:41:14 +08:00
|
|
|
|
{
|
|
|
|
|
label: '分类3',
|
|
|
|
|
value: 'cat3'
|
|
|
|
|
},
|
2019-04-30 11:11:25 +08:00
|
|
|
|
|
2019-11-07 10:41:14 +08:00
|
|
|
|
{
|
|
|
|
|
label: '分类4',
|
|
|
|
|
value: 'cat4'
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
]
|
2019-11-07 10:41:14 +08:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
toolbar: [
|
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
actionType: 'dialog',
|
|
|
|
|
label: '新增',
|
|
|
|
|
primary: true,
|
|
|
|
|
dialog: {
|
|
|
|
|
title: '新增',
|
|
|
|
|
body: {
|
|
|
|
|
type: 'form',
|
|
|
|
|
name: 'sample-edit-form',
|
|
|
|
|
api: 'post:/api/sample',
|
|
|
|
|
controls: [
|
2019-04-30 11:11:25 +08:00
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'engine',
|
|
|
|
|
label: 'Engine',
|
|
|
|
|
required: true
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
2019-04-30 11:11:25 +08:00
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'browser',
|
|
|
|
|
label: 'Browser',
|
|
|
|
|
required: true
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'divider'
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'platform',
|
|
|
|
|
label: 'Platform(s)',
|
|
|
|
|
required: true
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'divider'
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'version',
|
|
|
|
|
label: 'Engine version'
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'divider'
|
2019-04-30 11:11:25 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2019-11-07 10:41:14 +08:00
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'grade',
|
|
|
|
|
label: 'CSS grade'
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-11-07 10:41:14 +08:00
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
}
|
2019-11-07 10:41:14 +08:00
|
|
|
|
],
|
|
|
|
|
body: {
|
|
|
|
|
type: 'crud',
|
|
|
|
|
draggable: true,
|
2021-04-21 00:08:16 +08:00
|
|
|
|
api: {
|
|
|
|
|
url: '/api/sample',
|
|
|
|
|
sendOn: 'this.cat'
|
|
|
|
|
},
|
2019-11-07 10:41:14 +08:00
|
|
|
|
filter: {
|
|
|
|
|
title: '条件搜索',
|
|
|
|
|
submitText: '',
|
|
|
|
|
controls: [
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'keywords',
|
|
|
|
|
placeholder: '通过关键字搜索',
|
|
|
|
|
addOn: {
|
|
|
|
|
label: '搜索',
|
|
|
|
|
type: 'submit'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'plain',
|
|
|
|
|
text: '这里的表单项可以配置多个'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
bulkActions: [
|
|
|
|
|
{
|
|
|
|
|
label: '批量删除',
|
|
|
|
|
actionType: 'ajax',
|
|
|
|
|
api: 'delete:/api/sample/$ids',
|
|
|
|
|
confirmText: '确定要批量删除?'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '批量修改',
|
|
|
|
|
actionType: 'dialog',
|
|
|
|
|
dialog: {
|
|
|
|
|
title: '批量编辑',
|
|
|
|
|
name: 'sample-bulk-edit',
|
|
|
|
|
body: {
|
|
|
|
|
type: 'form',
|
|
|
|
|
api: '/api/sample/bulkUpdate2',
|
|
|
|
|
controls: [
|
|
|
|
|
{
|
|
|
|
|
type: 'hidden',
|
|
|
|
|
name: 'ids'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'engine',
|
|
|
|
|
label: 'Engine'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
quickSaveApi: '/api/sample/bulkUpdate',
|
|
|
|
|
quickSaveItemApi: '/api/sample/$id',
|
|
|
|
|
columns: [
|
|
|
|
|
{
|
|
|
|
|
name: 'id',
|
|
|
|
|
label: 'ID',
|
|
|
|
|
width: 20,
|
|
|
|
|
sortable: true,
|
|
|
|
|
type: 'text',
|
|
|
|
|
toggled: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'engine',
|
|
|
|
|
label: 'Rendering engine',
|
|
|
|
|
sortable: true,
|
|
|
|
|
searchable: true,
|
|
|
|
|
type: 'text',
|
|
|
|
|
toggled: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'browser',
|
|
|
|
|
label: 'Browser',
|
|
|
|
|
sortable: true,
|
|
|
|
|
type: 'text',
|
|
|
|
|
toggled: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'platform',
|
|
|
|
|
label: 'Platform(s)',
|
|
|
|
|
sortable: true,
|
|
|
|
|
type: 'text',
|
|
|
|
|
toggled: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'version',
|
|
|
|
|
label: 'Engine version',
|
|
|
|
|
quickEdit: true,
|
|
|
|
|
type: 'text',
|
|
|
|
|
toggled: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'grade',
|
|
|
|
|
label: 'CSS grade',
|
|
|
|
|
quickEdit: {
|
|
|
|
|
mode: 'inline',
|
|
|
|
|
type: 'select',
|
|
|
|
|
options: ['A', 'B', 'C', 'D', 'X'],
|
|
|
|
|
saveImmediately: true
|
|
|
|
|
},
|
|
|
|
|
type: 'text',
|
|
|
|
|
toggled: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'operation',
|
|
|
|
|
label: '操作',
|
|
|
|
|
width: 130,
|
|
|
|
|
buttons: [
|
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
icon: 'fa fa-eye',
|
|
|
|
|
actionType: 'dialog',
|
|
|
|
|
dialog: {
|
|
|
|
|
title: '查看',
|
|
|
|
|
body: {
|
|
|
|
|
type: 'form',
|
|
|
|
|
controls: [
|
|
|
|
|
{
|
|
|
|
|
type: 'static',
|
|
|
|
|
name: 'engine',
|
|
|
|
|
label: 'Engine'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'static',
|
|
|
|
|
name: 'browser',
|
|
|
|
|
label: 'Browser'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'static',
|
|
|
|
|
name: 'platform',
|
|
|
|
|
label: 'Platform(s)'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'static',
|
|
|
|
|
name: 'version',
|
|
|
|
|
label: 'Engine version'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'static',
|
|
|
|
|
name: 'grade',
|
|
|
|
|
label: 'CSS grade'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'html',
|
|
|
|
|
html:
|
|
|
|
|
'<p>添加其他 <span>Html 片段</span> 需要支持变量替换(todo).</p>'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
icon: 'fa fa-pencil',
|
|
|
|
|
actionType: 'dialog',
|
|
|
|
|
dialog: {
|
|
|
|
|
title: '编辑',
|
|
|
|
|
body: {
|
|
|
|
|
type: 'form',
|
|
|
|
|
name: 'sample-edit-form',
|
|
|
|
|
api: '/api/sample/$id',
|
|
|
|
|
controls: [
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'engine',
|
|
|
|
|
label: 'Engine',
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'browser',
|
|
|
|
|
label: 'Browser',
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'platform',
|
|
|
|
|
label: 'Platform(s)',
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'version',
|
|
|
|
|
label: 'Engine version'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'divider'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'text',
|
|
|
|
|
name: 'grade',
|
|
|
|
|
label: 'CSS grade'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
icon: 'fa fa-times text-danger',
|
|
|
|
|
actionType: 'ajax',
|
|
|
|
|
confirmText: '您确认要删除?',
|
|
|
|
|
api: 'delete:/api/sample/$id'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
toggled: true
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
2019-04-30 11:11:25 +08:00
|
|
|
|
};
|