From bf2e77248f05798c3f2904fe24416bb75c9e6476 Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期四, 03 七月 2025 17:33:48 +0800
Subject: [PATCH] 设备台账维修班组字段使用后台数据

---
 src/views/eam/equipment/modules/EamEquipmentModal.vue |    9 ++++++++-
 src/views/eam/equipment/EamEquipmentLedger.vue        |   16 ++++++++++------
 2 files changed, 18 insertions(+), 7 deletions(-)

diff --git a/src/views/eam/equipment/EamEquipmentLedger.vue b/src/views/eam/equipment/EamEquipmentLedger.vue
index 502cadd..c8f40fb 100644
--- a/src/views/eam/equipment/EamEquipmentLedger.vue
+++ b/src/views/eam/equipment/EamEquipmentLedger.vue
@@ -40,7 +40,8 @@
             <a-col :xl="6" :lg="7" :md="8" :sm="24">
               <a-form-item label="缁翠慨鐝粍">
                 <a-tree-select v-model="queryParam.repairDepartOrgCode" style="width: 100%"
-                               :tree-data="repairDepartTreeData"
+                               show-search :tree-data="repairDepartTreeData" treeNodeFilterProp="title"
+                               :replaceFields="{key:'orgCode',value:'orgCode'}" searchPlaceholder="璇疯緭鍏ュ叧閿瓧鎼滅储"
                                :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }" placeholder="璇烽�夋嫨缁翠慨鐝粍"
                                allow-clear tree-default-expand-all>
                 </a-tree-select>
@@ -188,7 +189,8 @@
     <!--</a-tabs>-->
 
     <!-- 琛ㄥ崟鍖哄煙 -->
-    <eamEquipment-modal ref="modalForm" @ok="modalFormOk" :productionTreeData="productionTreeData"/>
+    <eamEquipment-modal ref="modalForm" @ok="modalFormOk" :productionTreeData="productionTreeData"
+                        :repairDepartTreeData="repairDepartTreeData"/>
     <!--灞ュ巻寮圭獥-->
     <resume-drawer ref="resumeDrawerRef" :currentTableRowRecord="currentTableRowRecord"/>
   </a-card>
@@ -474,6 +476,7 @@
           exportXlsUrl: 'eam/equipment/exportXls',
           importExcelUrl: 'eam/equipment/importExcel',
           getProductionTreeList: '/eam/BaseFactory/queryTreeList',
+          repairDepartTreeList: '/eam/eamBaseRepairDepart/queryTreeList',
           templateXlsDownloadUrl: '瀵煎叆妯℃澘/璁惧鍙拌处瀵煎叆妯℃澘_v1.1.xlsx'
         },
         currentTableRowRecord: {},
@@ -488,6 +491,7 @@
     },
     created() {
       this.getProductionTreeDataByApi()
+      this.getRepairDepartTreeDataByApi()
     },
     methods: {
       // 鑾峰彇浣跨敤閮ㄩ棬鏍�
@@ -505,12 +509,12 @@
           })
       },
 
-      // 鑾峰彇浣跨敤閮ㄩ棬鏍�
-      getProductionTreeDataByApi() {
-        getAction(this.url.getProductionTreeList)
+      // 鑾峰彇缁翠慨鐝粍鏍�
+      getRepairDepartTreeDataByApi() {
+        getAction(this.url.repairDepartTreeList)
           .then(res => {
             if (res.success) {
-              this.productionTreeData = res.result
+              this.repairDepartTreeData = res.result
             } else {
               this.$notification.warning({
                 message: '娑堟伅',
diff --git a/src/views/eam/equipment/modules/EamEquipmentModal.vue b/src/views/eam/equipment/modules/EamEquipmentModal.vue
index 0d8a601..49a8cd4 100644
--- a/src/views/eam/equipment/modules/EamEquipmentModal.vue
+++ b/src/views/eam/equipment/modules/EamEquipmentModal.vue
@@ -58,7 +58,11 @@
                 </a-col>
                 <a-col :span="customSpan">
                   <a-form-model-item prop="repairDepartOrgCode" label="缁翠慨鐝粍">
-                    <a-input placeholder="璇烽�夋嫨缁翠慨鐝粍" v-model="model.repairDepartOrgCode"/>
+                    <a-tree-select v-model="model.repairDepartOrgCode" style="width: 100%"
+                                   show-search :tree-data="repairDepartTreeData" treeNodeFilterProp="title"
+                                   :replaceFields="{key:'orgCode',value:'orgCode'}" searchPlaceholder="璇疯緭鍏ュ叧閿瓧鎼滅储"
+                                   :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }" placeholder="璇烽�夋嫨缁翠慨鐝粍"
+                                   allow-clear tree-default-expand-all/>
                   </a-form-model-item>
                 </a-col>
                 <a-col :span="customSpan">
@@ -290,6 +294,9 @@
     props: {
       productionTreeData: {
         type: Array
+      },
+      repairDepartTreeData: {
+        type: Array
       }
     },
     data() {

--
Gitblit v1.9.3