update 起草组成员信息回显
This commit is contained in:
@@ -182,8 +182,8 @@
|
||||
<!-- 企业联系人信息start-->
|
||||
<section>
|
||||
<h3 class="title">企业联系人信息</h3>
|
||||
<!-- 项目类型不是工作组。正常显示一个企业联系人的信息-->
|
||||
<template v-if="basicInfo.projectType !== 2">
|
||||
<!-- 项目类型不是工作组或起草组。正常显示一个企业联系人的信息-->
|
||||
<template v-if="![2, 7].includes(basicInfo.projectType)">
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12">
|
||||
<label>企业联系人:</label>
|
||||
@@ -221,8 +221,8 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
</template>
|
||||
<!-- 工作组项目使用循环显示出联系人信息-->
|
||||
<template v-if="basicInfo.projectType === 2 && basicInfo.payWorkingGroupSubItemContactsList && basicInfo.payWorkingGroupSubItemContactsList.length > 0">
|
||||
<!-- 工作组项目或起草组项目使用循环显示出联系人信息-->
|
||||
<template v-if="[2, 7].includes(basicInfo.projectType) && basicInfo.payWorkingGroupSubItemContactsList && basicInfo.payWorkingGroupSubItemContactsList.length > 0">
|
||||
<div v-for="(item, index) in basicInfo.payWorkingGroupSubItemContactsList" :key="index + ''">
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12" class="detail-item">
|
||||
|
||||
Reference in New Issue
Block a user