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
|
| import SettingIplatform from '@/utils/settingIplatform';
| export default [
| {
| type: 'text',
| dataIndex: 'projectName',
| label: '模板名称',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'text',
| dataIndex: 'projectCode',
| label: '模板编号',
| placeholder: '请输入',
| defaultValue: ''
| },
| {
| type: 'cascader',
| dataIndex: 'planTypeCode',
| label: '所属机构',
| placeholder: '请选择',
| options: [],
| optionsConfig: {
| url: SettingIplatform.apiBaseURL + '/pc/fin/sys/tenant/select/tree_fin_tenant'
| }
| },
| {
| type: 'select',
| dataIndex: 'status',
| label: '状态',
| placeholder: '请选择',
| defaultValue: '1',
| options: [
| {
| label: '启用',
| value: '1'
| },
| {
| label: '禁用',
| value: '0'
| }
| ]
| }
| ]
|
|