数据资产登记更新
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -241,9 +241,9 @@ const setBaseFormItemsValue = (info: any) => { | ... | @@ -241,9 +241,9 @@ const setBaseFormItemsValue = (info: any) => { |
| 241 | item.inputOptions.visible = false; | 241 | item.inputOptions.visible = false; |
| 242 | } | 242 | } |
| 243 | } else if (item.field == 'updateFrequency') { | 243 | } else if (item.field == 'updateFrequency') { |
| 244 | item.default = Array.isArray(info[item.field]) ? info[item.field][0] : (info[item.field] || []); | 244 | item.default = Array.isArray(info[item.field]) ? info[item.field][0] : (info[item.field] || ''); |
| 245 | } else if (item.field == 'ownIndustry') { | 245 | } else if (item.field == 'ownIndustry') { |
| 246 | item.default = Array.isArray(info[item.field]) ? info[item.field][0] : (info[item.field] || []); | 246 | item.default = Array.isArray(info[item.field]) ? info[item.field][0] : (info[item.field] || ''); |
| 247 | item.inputOptions.default = info['ownIndustryOther']; | 247 | item.inputOptions.default = info['ownIndustryOther']; |
| 248 | if (info['ownIndustry']?.includes(4)) { | 248 | if (info['ownIndustry']?.includes(4)) { |
| 249 | item.inputOptions.visible = true; | 249 | item.inputOptions.visible = true; | ... | ... |
-
Please register or sign in to post a comment