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
46
47
48
| import SettingIplatform from "@/utils/settingIplatform";
|
| export default [
| {
| type: 'text',
| dataIndex: 'projectName',
| label: '模板名称',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'text',
| dataIndex: 'projectCode',
| label: '模板编号',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'select',
| dataIndex: 'planTypeCode',
| label: '计划类型',
| placeholder: '请选择',
| defaultValue: '',
| options: [],
| optionsConfig: {
| label: 'dict_label',
| value: 'dict_code',
| url: SettingIplatform.apiBaseURL + '/permit/dict/data/type/PLAN_TYPE'
| }
| },
| {
| type: 'select',
| dataIndex: 'status',
| label: '状态',
| placeholder: '请选择',
| defaultValue: '1',
| options: [
| {
| label: '启用',
| value: '1'
| },
| {
| label: '禁用',
| value: '0'
| }
| ]
| }
| ]
|
|