From 9ed9db9716f36e797141d9a80119fd0c1f4ac7a5 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期二, 14 一月 2025 15:12:14 +0800 Subject: [PATCH] 1、产品/部件/零件的新增与编辑以及根据层级查询对应文档功能已完成后端联调 2、产品结构树新增节点展开记忆功能方便新增节点后查看 --- src/views/dnc/base/modules/ProductStructure/ProductStructureMainBottom.vue | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/dnc/base/modules/ProductStructure/ProductStructureMainBottom.vue b/src/views/dnc/base/modules/ProductStructure/ProductStructureMainBottom.vue index 8651ed1..2556e05 100644 --- a/src/views/dnc/base/modules/ProductStructure/ProductStructureMainBottom.vue +++ b/src/views/dnc/base/modules/ProductStructure/ProductStructureMainBottom.vue @@ -12,8 +12,12 @@ <PartInfo :currentLevelDetails="currentLevelInfo.entity" :size="descriptionsContainerSize"/> </a-tab-pane> - <a-tab-pane :key="1" tab="宸ュ簭灞炴��" v-if="currentLevelInfo.hasOwnProperty('processType')"> + <a-tab-pane :key="1" tab="宸ュ簭灞炴��" v-if="currentLevelInfo.type===4"> <ProcessInfo :currentLevelDetails="currentLevelInfo" :size="descriptionsContainerSize"/> + </a-tab-pane> + + <a-tab-pane :key="1" tab="宸ユ灞炴��" v-if="currentLevelInfo.type===5"> + <ProcessStepInfo :currentLevelDetails="currentLevelInfo" :size="descriptionsContainerSize"/> </a-tab-pane> <template v-if="currentLevelInfo.hasOwnProperty('attributionType')"> @@ -43,11 +47,13 @@ import ProcessInfo from './Process/ProcessInfo' import DocumentInfo from './Document/DocumentInfo' import DocumentVersionTableList from './Document/DocumentVersionTableList' - import UseDocumentEquipmentTableList from './Document/UseDocumentEquipmentTableList' + import UseDocumentEquipmentTableList from './Document/UseNcDocumentEquipmentTableList' + import ProcessStepInfo from './ProcessStep/ProcessStepInfo' export default { name: 'ProductStructureMainBottom', components: { + ProcessStepInfo, UseDocumentEquipmentTableList, DocumentVersionTableList, DocumentInfo, -- Gitblit v1.9.3