2f796514 by lihua

fix: 权力信息

1 parent d58cadea
......@@ -1587,7 +1587,7 @@ const passCommonDialogBtnClick = (btn, info) => {
<!-- <span
v-if="tenantDetail.businessLicense?.length || assetDetailInfo.registerAttachment?.commitmentLetter?.length"
class="small-title" :style="{ marginTop: '10px' }">公司信息</span> -->
<div class="list_item isFile" v-if="assetDetailInfo.businessLicense?.length">
<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"
:style="{ 'padding-left': '0px' }">
......
......@@ -1702,7 +1702,7 @@ const saveDraft = () => {
let propertyFormLine = porpertyInfoFormRef.value.formInline;
Object.assign(params, propertyFormLine);
propertyFormLine.propertyTerm == 'Y' && (params.propertyTermSdate = propertyFormLine.propertyTermDate[0], params.propertyTermEdate = propertyFormLine.propertyTermDate[1]);
params.companyGuid = tenantDetail.value?.tenantGuid;
params.companyGuid = tenantDetail.value?.tenantGuid || userData.tenantGuid;
params.companyName = tenantDetail.value?.tenantName;
delete params.qualityEvaluationInstitutionGuid;
delete params.costAssessmentInstitutionGuid;
......@@ -1832,8 +1832,8 @@ const save = () => {
delete params.rules;
delete params.cost;
delete params.trem;
params.companyGuid = tenantDetail.value?.tenantGuid;
params.companyName = tenantDetail.value?.tenantName;
params.companyGuid = tenantDetail.value?.tenantGuid || userData.tenantGuid;
params.companyName = tenantDetail.value?.tenantName;
let uploadFormInline = uploadFormRef.value.formInline;
let registerAttachment: any = {
......
......@@ -158,10 +158,9 @@ const tableInfo = ref({
isShowCancel = true;
}
if ((bizApproveState === 'Y' || row.crossPlatformApproveState == 'Y') && staffGuid == currentStaffGuid) {
if (row.listingStatus === 'Y') {
if (row.listingStatus == 'Y') {
list.push({ label: "下架", value: "down" });
}
if (row.listingStatus === 'N') {
} else {
list.push({ label: "上架", value: "up" });
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!