From 85f1c073fea2da2fe037d149d42bcec4fe94152f Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期三, 23 七月 2025 16:50:01 +0800 Subject: [PATCH] 1、调整保养规范流程审批明细展示以及增加审批节点拒绝时的展示条件 2、保养规范页面增加详情展示(启用、待提交以及作废状态不展示) --- src/views/spare/modules/sparePartScrapRequirement/SparePartScrapRequirementForm.vue | 17 ++++++----------- 1 files changed, 6 insertions(+), 11 deletions(-) diff --git a/src/views/spare/modules/sparePartScrapRequirement/SparePartScrapRequirementForm.vue b/src/views/spare/modules/sparePartScrapRequirement/SparePartScrapRequirementForm.vue index 9c06f22..12d4781 100644 --- a/src/views/spare/modules/sparePartScrapRequirement/SparePartScrapRequirementForm.vue +++ b/src/views/spare/modules/sparePartScrapRequirement/SparePartScrapRequirementForm.vue @@ -338,7 +338,6 @@ }, created() { this.initOptions() - this.initNum() }, methods: { @@ -380,16 +379,6 @@ }); } }, */ - - initNum() { - getAction(this.url.getNum, { type: 'SparePartRequirement', length: '4' }).then((res) => { - if (res.success) { - this.model.num = res.message - - /* this.model.setFieldsValue({ num: res.message }); */ - } - }) - }, initOptions() { getAction(this.url.loadOptions).then(res => { @@ -471,6 +460,12 @@ if (this.model.id) { let params = { id: this.model.id } this.requestSubTableData(this.url.sparesScrapRequirementDetail.list, params, this.sparesScrapRequirementDetailTable) + }else{ + getAction(this.url.getNum, { type: 'SparePartRequirement', length: '4' }).then((res) => { + if (res.success) { + this.model.num = res.message + } + }) } }, //鏍¢獙鎵�鏈変竴瀵逛竴瀛愯〃琛ㄥ崟 -- Gitblit v1.9.3