From a7ed137d53ebcaaf8f9429a53a34ece9351cc05c Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期四, 22 五月 2025 10:26:11 +0800 Subject: [PATCH] art: 设备管理-三保-列表、新增修改,增加精度参数明细项 --- 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