查看进度进度时无进展阶段不显示
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -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> | ... | ... |
-
Please register or sign in to post a comment