1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| /**
| * @description Wrap表单配置信息
| */
| export default function (wrap) {
| const wrapForm = [
| {
| type: 'text',
| field: 'name',
| label: '导航栏名称',
| initval: wrap.name || '',
| required: true
| },
| {
| type: 'text',
| field: 'MenuNo',
| label: '菜单参数',
| initval: wrap.MenuNo || '',
| required: true
| },
| {
| type: 'radio',
| field: 'datatype',
| label: '数据来源',
| initval: wrap.datatype || 'static',
| tooltip: '选择静态值,无需配置数据源。',
| required: false,
| options: [
| {value: 'dynamic', label: '动态'},
| {value: 'static', label: '静态'},
| ]
| },
| {
| type: 'number',
| field: 'height',
| label: '高度',
| initval: wrap.height || 50,
| min: 30,
| max: 200,
| precision: 0,
| required: true
| }
| ]
|
| return wrapForm
| }
|
|