73570293 by lihua

fix: 权力信息

1 parent b5702d74
...@@ -1577,7 +1577,7 @@ const passCommonDialogBtnClick = (btn, info) => { ...@@ -1577,7 +1577,7 @@ const passCommonDialogBtnClick = (btn, info) => {
1577 <!-- <span 1577 <!-- <span
1578 v-if="tenantDetail.businessLicense?.length || assetDetailInfo.registerAttachment?.commitmentLetter?.length" 1578 v-if="tenantDetail.businessLicense?.length || assetDetailInfo.registerAttachment?.commitmentLetter?.length"
1579 class="small-title" :style="{ marginTop: '10px' }">公司信息</span> --> 1579 class="small-title" :style="{ marginTop: '10px' }">公司信息</span> -->
1580 <div class="list_item isFile" v-if="assetDetailInfo.businessLicense?.length"> 1580 <div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length">
1581 <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span> 1581 <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span>
1582 <span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value" 1582 <span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value"
1583 :style="{ 'padding-left': '0px' }"> 1583 :style="{ 'padding-left': '0px' }">
......
...@@ -1702,7 +1702,7 @@ const saveDraft = () => { ...@@ -1702,7 +1702,7 @@ const saveDraft = () => {
1702 let propertyFormLine = porpertyInfoFormRef.value.formInline; 1702 let propertyFormLine = porpertyInfoFormRef.value.formInline;
1703 Object.assign(params, propertyFormLine); 1703 Object.assign(params, propertyFormLine);
1704 propertyFormLine.propertyTerm == 'Y' && (params.propertyTermSdate = propertyFormLine.propertyTermDate[0], params.propertyTermEdate = propertyFormLine.propertyTermDate[1]); 1704 propertyFormLine.propertyTerm == 'Y' && (params.propertyTermSdate = propertyFormLine.propertyTermDate[0], params.propertyTermEdate = propertyFormLine.propertyTermDate[1]);
1705 params.companyGuid = tenantDetail.value?.tenantGuid; 1705 params.companyGuid = tenantDetail.value?.tenantGuid || userData.tenantGuid;
1706 params.companyName = tenantDetail.value?.tenantName; 1706 params.companyName = tenantDetail.value?.tenantName;
1707 delete params.qualityEvaluationInstitutionGuid; 1707 delete params.qualityEvaluationInstitutionGuid;
1708 delete params.costAssessmentInstitutionGuid; 1708 delete params.costAssessmentInstitutionGuid;
...@@ -1832,7 +1832,7 @@ const save = () => { ...@@ -1832,7 +1832,7 @@ const save = () => {
1832 delete params.rules; 1832 delete params.rules;
1833 delete params.cost; 1833 delete params.cost;
1834 delete params.trem; 1834 delete params.trem;
1835 params.companyGuid = tenantDetail.value?.tenantGuid; 1835 params.companyGuid = tenantDetail.value?.tenantGuid || userData.tenantGuid;
1836 params.companyName = tenantDetail.value?.tenantName; 1836 params.companyName = tenantDetail.value?.tenantName;
1837 1837
1838 let uploadFormInline = uploadFormRef.value.formInline; 1838 let uploadFormInline = uploadFormRef.value.formInline;
......
...@@ -169,8 +169,7 @@ const tableInfo = ref({ ...@@ -169,8 +169,7 @@ const tableInfo = ref({
169 if (bizApproveState === 'Y' && staffGuid == currentStaffGuid && !row.zqName) { 169 if (bizApproveState === 'Y' && staffGuid == currentStaffGuid && !row.zqName) {
170 if (row.listingStatus === 'Y') { 170 if (row.listingStatus === 'Y') {
171 list.push({ label: "下架", value: "down" }); 171 list.push({ label: "下架", value: "down" });
172 } 172 } else {
173 if (row.listingStatus === 'N') {
174 list.push({ label: "上架", value: "up" }); 173 list.push({ label: "上架", value: "up" });
175 } 174 }
176 } 175 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!