From 34feb4908ec7b7e5b51adf6355603978c67bd3a4 Mon Sep 17 00:00:00 2001
From: cuijian <cuijian@xalxzn.com>
Date: 星期四, 05 六月 2025 09:53:14 +0800
Subject: [PATCH] 申请单入库

---
 src/views/tms/WarehouseTree.vue |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/views/tms/WarehouseTree.vue b/src/views/tms/WarehouseTree.vue
index e9a92d7..490df2f 100644
--- a/src/views/tms/WarehouseTree.vue
+++ b/src/views/tms/WarehouseTree.vue
@@ -2,7 +2,7 @@
   <a-card
     :loading="cardLoading"
     :bordered="false"
-    title="浠撳簱绠$悊"
+    :title="title"
     style="height: 100%;"
   >
     <a-spin :spinning="loading">
@@ -160,7 +160,13 @@
   components: {
     Tooltip,
   },
-  props: ['value'],
+  props: {
+    value: {},
+    title: {
+      type: String,
+      default: ''
+    }
+  },
   data() {
     return {
       searchInput: '',
@@ -295,11 +301,9 @@
   },
   mounted() {
     this.$bus.$on('queryTreeData', this.queryTreeData);
-    this.$bus.$on('clearTreeSelection', this.onClearSelected)
   },
   beforeDestroy() {
     this.$bus.$off('queryTreeData', this.queryTreeData);
-    this.$bus.$off('clearTreeSelection', this.onClearSelected)
   },
   //鐩戝惉
   watch: {

--
Gitblit v1.9.3