fix
Showing
2 changed files
with
5 additions
and
2 deletions
| ... | @@ -1607,7 +1607,7 @@ const passCommonDialogBtnClick = (btn, info) => { | ... | @@ -1607,7 +1607,7 @@ const passCommonDialogBtnClick = (btn, info) => { |
| 1607 | class="small-title" :style="{ marginTop: '10px' }">公司信息</span> --> | 1607 | class="small-title" :style="{ marginTop: '10px' }">公司信息</span> --> |
| 1608 | <div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length"> | 1608 | <div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length"> |
| 1609 | <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span> | 1609 | <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span> |
| 1610 | <span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value" | 1610 | <span v-for="(item) in (assetDetailInfo.registerAttachment?.businessLicense || [])" class="item_value" |
| 1611 | :style="{ 'padding-left': '0px' }"> | 1611 | :style="{ 'padding-left': '0px' }"> |
| 1612 | <div class="file-operate"> | 1612 | <div class="file-operate"> |
| 1613 | <template | 1613 | <template | ... | ... |
| ... | @@ -1201,7 +1201,7 @@ const baseSelectChange = (val, item, row) => { | ... | @@ -1201,7 +1201,7 @@ const baseSelectChange = (val, item, row) => { |
| 1201 | } else { | 1201 | } else { |
| 1202 | dataScaleItem.disabled = false; | 1202 | dataScaleItem.disabled = false; |
| 1203 | damTypeItem.disabled = false; | 1203 | damTypeItem.disabled = false; |
| 1204 | subjectDomainItem.disabled = false; | 1204 | subjectDomainItem.disabled = route.query.type == 'edit' ? true : false; |
| 1205 | if (row.damType == '1' || row.damType == '2') { | 1205 | if (row.damType == '1' || row.damType == '2') { |
| 1206 | row.damType = ''; | 1206 | row.damType = ''; |
| 1207 | } | 1207 | } |
| ... | @@ -1995,6 +1995,9 @@ onBeforeMount(() => { | ... | @@ -1995,6 +1995,9 @@ onBeforeMount(() => { |
| 1995 | subjectItem.expandKeys = tree.children[0]?.children?.[0]?.children?.[0]?.parentGuids; | 1995 | subjectItem.expandKeys = tree.children[0]?.children?.[0]?.children?.[0]?.parentGuids; |
| 1996 | } | 1996 | } |
| 1997 | } | 1997 | } |
| 1998 | if (route.query.type == 'edit') { | ||
| 1999 | subjectItem.disabled = true; | ||
| 2000 | } | ||
| 1998 | } | 2001 | } |
| 1999 | if (data.coverageArea?.[0]?.[0] == 'all') { | 2002 | if (data.coverageArea?.[0]?.[0] == 'all') { |
| 2000 | coverageArea = 'all'; | 2003 | coverageArea = 'all'; | ... | ... |
-
Please register or sign in to post a comment