73f1e111 by lihua

fix

1 parent d05c6a9f
...@@ -1606,7 +1606,7 @@ const passCommonDialogBtnClick = (btn, info) => { ...@@ -1606,7 +1606,7 @@ const passCommonDialogBtnClick = (btn, info) => {
1606 class="small-title" :style="{ marginTop: '10px' }">公司信息</span> --> 1606 class="small-title" :style="{ marginTop: '10px' }">公司信息</span> -->
1607 <div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length"> 1607 <div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length">
1608 <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span> 1608 <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span>
1609 <span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value" 1609 <span v-for="(item) in (assetDetailInfo.registerAttachment?.businessLicense || [])" class="item_value"
1610 :style="{ 'padding-left': '0px' }"> 1610 :style="{ 'padding-left': '0px' }">
1611 <div class="file-operate"> 1611 <div class="file-operate">
1612 <template 1612 <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';
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!