Former-commit-id: f7747e6ef428d8a01a8e5a6f4c5bc9662539fc82 [formerly f7747e6ef428d8a01a8e5a6f4c5bc9662539fc82 [formerly f7747e6ef428d8a01a8e5a6f4c5bc9662539fc82 [formerly f7747e6ef428d8a01a8e5a6f4c5bc9662539fc82 [formerly ff58f91ad82304510f1d5b16913b0ed7f12cdd98 [formerly 0e2ea611389ef66701658cb129fd92d27f0d20db]]]]] Former-commit-id: ac2d6ae9de0027a8b7f1f4e691af5751d885c1e8 Former-commit-id: 55b536422271a93de6ced917e2806cc605176e56 Former-commit-id: baa97eb1007fde4d92c4fef24c3a333de2b04c10 [formerly 96304aee1d9a8bbbf7a6782f900ea2c8a692a644] Former-commit-id: 837df4c5d2d341e6e5660e5bf583697b0af8bf90 Former-commit-id: 541ae5bf81db67f04066cd27c58c140b99f9c551 Former-commit-id: 4f419eb510460934b625ecc1e308bd3f695d1205 Former-commit-id: 29bc000faf4bf215df6c1768c93f24cf3d36f0ac Former-commit-id: eef337fa269cf96f66e7774021123324305de75a
42 lines
1.6 KiB
JavaScript
42 lines
1.6 KiB
JavaScript
export default {
|
|
path: '/demo/d2-crud',
|
|
title: 'D2 CRUD',
|
|
iconSvg: 'd2-crud',
|
|
children: (pre => [
|
|
{ path: `${pre}index`, title: 'D2 CRUD 首页', icon: 'home' },
|
|
{
|
|
title: '基础功能',
|
|
children: [
|
|
{ path: `${pre}demo1`, title: '基础表格' },
|
|
{ path: `${pre}demo2`, title: '带斑马纹表格' },
|
|
{ path: `${pre}demo3`, title: '带边框表格' },
|
|
{ path: `${pre}demo4`, title: '带状态表格' },
|
|
{ path: `${pre}demo5`, title: '固定表头' },
|
|
{ path: `${pre}demo6`, title: '固定列' },
|
|
{ path: `${pre}demo7`, title: '流体高度' },
|
|
{ path: `${pre}demo8`, title: '多级表头' },
|
|
{ path: `${pre}demo9`, title: '单选' },
|
|
{ path: `${pre}demo10`, title: '多选' },
|
|
{ path: `${pre}demo11`, title: '排序' },
|
|
{ path: `${pre}demo12`, title: '筛选' },
|
|
{ path: `${pre}demo13`, title: '表尾合计行' },
|
|
{ path: `${pre}demo14`, title: '合并行' },
|
|
{ path: `${pre}demo15`, title: '合并列' }
|
|
]
|
|
},
|
|
{
|
|
title: '数据操作',
|
|
children: [
|
|
{ path: `${pre}demo16`, title: '新增数据' },
|
|
{ path: `${pre}demo17`, title: '修改数据' },
|
|
{ path: `${pre}demo18`, title: '删除数据' },
|
|
{ path: `${pre}demo19`, title: '自定义操作列' },
|
|
{ path: `${pre}demo20`, title: '表单组件渲染' },
|
|
{ path: `${pre}demo21`, title: '表单布局' },
|
|
{ path: `${pre}demo22`, title: '表单校验' },
|
|
{ path: `${pre}demo23`, title: '表格内编辑' }
|
|
]
|
|
}
|
|
])('/demo/d2-crud/')
|
|
}
|