7884c12f by lihua

fix: 权力信息

1 parent 3d752f22
...@@ -1588,7 +1588,7 @@ const passCommonDialogBtnClick = (btn, info) => { ...@@ -1588,7 +1588,7 @@ const passCommonDialogBtnClick = (btn, info) => {
1588 <!-- <span 1588 <!-- <span
1589 v-if="tenantDetail.businessLicense?.length || assetDetailInfo.registerAttachment?.commitmentLetter?.length" 1589 v-if="tenantDetail.businessLicense?.length || assetDetailInfo.registerAttachment?.commitmentLetter?.length"
1590 class="small-title" :style="{ marginTop: '10px' }">公司信息</span> --> 1590 class="small-title" :style="{ marginTop: '10px' }">公司信息</span> -->
1591 <div class="list_item isFile" v-if="assetDetailInfo.businessLicense?.length"> 1591 <div class="list_item isFile" v-if="assetDetailInfo.registerAttachment?.businessLicense?.length">
1592 <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span> 1592 <span class="item_label" :style="{ width: 'auto', 'text-align': 'left' }">营业执照</span>
1593 <span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value" 1593 <span v-for="(item) in (assetDetailInfo?.businessLicense || [])" class="item_value"
1594 :style="{ 'padding-left': '0px' }"> 1594 :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,8 +1832,8 @@ const save = () => { ...@@ -1832,8 +1832,8 @@ 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;
1839 let registerAttachment: any = { 1839 let registerAttachment: any = {
......
...@@ -158,10 +158,9 @@ const tableInfo = ref({ ...@@ -158,10 +158,9 @@ const tableInfo = ref({
158 isShowCancel = true; 158 isShowCancel = true;
159 } 159 }
160 if ((bizApproveState === 'Y' || row.crossPlatformApproveState == 'Y') && staffGuid == currentStaffGuid) { 160 if ((bizApproveState === 'Y' || row.crossPlatformApproveState == 'Y') && staffGuid == currentStaffGuid) {
161 if (row.listingStatus === 'Y') { 161 if (row.listingStatus == 'Y') {
162 list.push({ label: "下架", value: "down" }); 162 list.push({ label: "下架", value: "down" });
163 } 163 } else {
164 if (row.listingStatus === 'N') {
165 list.push({ label: "上架", value: "up" }); 164 list.push({ label: "上架", value: "up" });
166 } 165 }
167 } 166 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!