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/sparePartScrap/SparePartScrapForm.vue |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/src/views/spare/modules/sparePartScrap/SparePartScrapForm.vue b/src/views/spare/modules/sparePartScrap/SparePartScrapForm.vue
index f101143..90927e1 100644
--- a/src/views/spare/modules/sparePartScrap/SparePartScrapForm.vue
+++ b/src/views/spare/modules/sparePartScrap/SparePartScrapForm.vue
@@ -6,7 +6,7 @@
         <a-row>
           <a-col :span='12'>
             <a-form-model-item label='鍗曟嵁鍙�' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='num'>
-              <a-input v-model='model.num' placeholder='璇疯緭鍏ュ崟鎹彿'></a-input>
+              <a-input v-model='model.num' placeholder='璇疯緭鍏ュ崟鎹彿' :disabled="true"></a-input>
             </a-form-model-item>
           </a-col>
           <a-col :span='12'>
@@ -397,6 +397,7 @@
         getSysDeparts: "/eam/equipment/getSysDeparts",
         loadOptions: '/sys/sysDepart/loadDepartTreeOptions',
         queryById: '/spare/sparePartScrap/queryById',
+        getNum: '/eam/sysIdentity/getNumNew',
         sparesScrapDetail: {
           list: '/spare/sparePartScrap/querySparesScrapDetailByMainId'
         }
@@ -514,6 +515,12 @@
       if (this.model.id) {
         let params = { id: this.model.id }
         this.requestSubTableData(this.url.sparesScrapDetail.list, params, this.sparesScrapDetailTable)
+      }else{
+        getAction(this.url.getNum, { type: 'SparePartScrap', length: '4' }).then((res) => {
+        if (res.success) {
+          this.model.num = res.message
+        }
+      })
       }
     },
     //鏍¢獙鎵�鏈変竴瀵逛竴瀛愯〃琛ㄥ崟

--
Gitblit v1.9.3