73f1e111 by lihua

fix

1 parent d05c6a9f
......@@ -1606,7 +1606,7 @@ const passCommonDialogBtnClick = (btn, info) => {
class="small-title" :style="{ marginTop: '10px' }">公司信息</span> -->
<div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length">
<span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span>
<span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value"
<span v-for="(item) in (assetDetailInfo.registerAttachment?.businessLicense || [])" class="item_value"
:style="{ 'padding-left': '0px' }">
<div class="file-operate">
<template
......
......@@ -1201,7 +1201,7 @@ const baseSelectChange = (val, item, row) => {
} else {
dataScaleItem.disabled = false;
damTypeItem.disabled = false;
subjectDomainItem.disabled = false;
subjectDomainItem.disabled = route.query.type == 'edit' ? true : false;
if (row.damType == '1' || row.damType == '2') {
row.damType = '';
}
......@@ -1995,6 +1995,9 @@ onBeforeMount(() => {
subjectItem.expandKeys = tree.children[0]?.children?.[0]?.children?.[0]?.parentGuids;
}
}
if (route.query.type == 'edit') {
subjectItem.disabled = true;
}
}
if (data.coverageArea?.[0]?.[0] == 'all') {
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!