敏感数据识别数据来源没有文件夹
Showing
1 changed file
with
14 additions
and
2 deletions
| ... | @@ -33,7 +33,13 @@ const searchItemList = ref([{ | ... | @@ -33,7 +33,13 @@ const searchItemList = ref([{ |
| 33 | label: "", | 33 | label: "", |
| 34 | field: "dataSource", | 34 | field: "dataSource", |
| 35 | default: null, | 35 | default: null, |
| 36 | options: dataSourceTypeList, | 36 | options: [{ |
| 37 | value: 1, | ||
| 38 | label: '数据库' | ||
| 39 | }, { | ||
| 40 | value: 2, | ||
| 41 | label: '文件导入' | ||
| 42 | }], | ||
| 37 | placeholder: "数据来源", | 43 | placeholder: "数据来源", |
| 38 | clearable: true, | 44 | clearable: true, |
| 39 | filterable: true, | 45 | filterable: true, |
| ... | @@ -213,7 +219,13 @@ const newCreateTaskFormItems = ref([{ | ... | @@ -213,7 +219,13 @@ const newCreateTaskFormItems = ref([{ |
| 213 | placeholder: '请选择', | 219 | placeholder: '请选择', |
| 214 | field: 'dataSource', | 220 | field: 'dataSource', |
| 215 | default: 1, | 221 | default: 1, |
| 216 | options: dataSourceTypeList, | 222 | options: [{ |
| 223 | value: 1, | ||
| 224 | label: '数据库' | ||
| 225 | }, { | ||
| 226 | value: 2, | ||
| 227 | label: '文件导入' | ||
| 228 | }], | ||
| 217 | props: { | 229 | props: { |
| 218 | label: "label", | 230 | label: "label", |
| 219 | value: "value", | 231 | value: "value", | ... | ... |
-
Please register or sign in to post a comment