77e24b9e by lihua

查看进度进度时无进展阶段不显示

1 parent 5d85e3e8
...@@ -748,7 +748,7 @@ onBeforeMount(() => { ...@@ -748,7 +748,7 @@ onBeforeMount(() => {
748 <!-- 传递到 Form 组件中的默认插槽 --> 748 <!-- 传递到 Form 组件中的默认插槽 -->
749 <template v-slot:default> 749 <template v-slot:default>
750 <template v-if="contractNodeCodes?.length > 0"> 750 <template v-if="contractNodeCodes?.length > 0">
751 <div class="title-label">进展阶段录入</div> 751 <div v-show="!(!nodesInfo?.length && drawerInfo.type == 'view')" class="title-label">进展阶段录入</div>
752 <!-- 渲染行 --> 752 <!-- 渲染行 -->
753 <div v-for="(row, index) in nodesInfo" :key="index" class="match-content-wrapper"> 753 <div v-for="(row, index) in nodesInfo" :key="index" class="match-content-wrapper">
754 <div class="title-row"><span class="title">{{ row.contractNodeName }}</span><span class="btns" 754 <div class="title-row"><span class="title">{{ row.contractNodeName }}</span><span class="btns"
...@@ -756,7 +756,6 @@ onBeforeMount(() => { ...@@ -756,7 +756,6 @@ onBeforeMount(() => {
756 <Form :ref="(el: any) => { setDepItemRef(el, row.contractNodeCode) }" :itemList="row.nodeFormItems" 756 <Form :ref="(el: any) => { setDepItemRef(el, row.contractNodeCode) }" :itemList="row.nodeFormItems"
757 :formId="'node-form' + index" :rules="row.nodeFormRules" col="col2" /> 757 :formId="'node-form' + index" :rules="row.nodeFormRules" col="col2" />
758 </div> 758 </div>
759
760 <!-- 新增按钮 --> 759 <!-- 新增按钮 -->
761 <div class="bottm_tools" v-show="nodesInfo.length < contractNodeCodes?.length && drawerInfo.type != 'view'" @click="addNode"> 760 <div class="bottm_tools" v-show="nodesInfo.length < contractNodeCodes?.length && drawerInfo.type != 'view'" @click="addNode">
762 <el-icon> 761 <el-icon>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!