[fix 86911] 功能安全中心项目会议-成员单位详情
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
@cancel="handleCancel"
|
||||
cancelText="关闭">
|
||||
<!-- 基本信息begin-->
|
||||
<section class="base-info" v-if="!isDraftGroup">
|
||||
<section class="base-info" v-if="hideCostInfo && !isSafetyCenterMeeting">
|
||||
<h3 class="title">基本信息</h3>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12" class="detail-item">
|
||||
@@ -292,7 +292,7 @@
|
||||
</section>
|
||||
<!-- 企业联系人信息end-->
|
||||
<!--到账信息begin-->
|
||||
<section class="payment-info" v-if="!isDraftGroup && !isSafetyCenterMeeting">
|
||||
<section class="payment-info" v-if="hideCostInfo && !isSafetyCenterMeeting">
|
||||
<h3 class="title">到账信息</h3>
|
||||
<div class="payment-info-box">
|
||||
<section class="payment-info-title">到账信息</section>
|
||||
@@ -306,7 +306,7 @@
|
||||
</section>
|
||||
<!--到账信息end-->
|
||||
<!--开票邮寄信息begin-->
|
||||
<section class="logistics-info" v-if="!isDraftGroup && !isSafetyCenterMeeting">
|
||||
<section class="logistics-info" v-if="hideCostInfo && !isSafetyCenterMeeting">
|
||||
<h3 class="title">开票邮寄信息</h3>
|
||||
<div class="wrap-table">
|
||||
<a-table
|
||||
@@ -446,9 +446,10 @@ export default {
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
// 是否起草组项目
|
||||
isDraftGroup () {
|
||||
return this.projectType === ProjectTypeEnums.DRAFT_PRO.value
|
||||
// 是否隐藏金额相关信息(起草组、功能安全中心)
|
||||
hideCostInfo () {
|
||||
const arr = [ProjectTypeEnums.DRAFT_PRO.value, ProjectTypeEnums.SAFETY_CENTER_PRO.value]
|
||||
return !arr.includes(this.projectType)
|
||||
},
|
||||
// 是否功能安全中心会议
|
||||
isSafetyCenterMeeting () {
|
||||
|
||||
Reference in New Issue
Block a user