Showing
1 changed file
with
7 additions
and
7 deletions
... | ... | @@ -60,6 +60,13 @@ export const modeForm = (disabled: boolean): FormSchema[] => { |
60 | 60 | }, |
61 | 61 | }, |
62 | 62 | { |
63 | + required: true, | |
64 | + field: 'organizationId', | |
65 | + label: '所属组织', | |
66 | + colProps: { span: 24 }, | |
67 | + component: 'OrgTreeSelect', | |
68 | + }, | |
69 | + { | |
63 | 70 | field: BasicInfoFormField.DATA_SOURCE_PRODUCT, |
64 | 71 | label: '数据源产品', |
65 | 72 | component: 'TransferModal', |
... | ... | @@ -125,13 +132,6 @@ export const modeForm = (disabled: boolean): FormSchema[] => { |
125 | 132 | }, |
126 | 133 | }, |
127 | 134 | { |
128 | - required: true, | |
129 | - field: 'organizationId', | |
130 | - label: '所属组织', | |
131 | - colProps: { span: 24 }, | |
132 | - component: 'OrgTreeSelect', | |
133 | - }, | |
134 | - { | |
135 | 135 | field: 'type', |
136 | 136 | label: '转换方式', |
137 | 137 | component: 'ApiSelect', | ... | ... |