From a17f09e572d644b04d1a40aa889ee1fd38a2b643 Mon Sep 17 00:00:00 2001 From: lixiangyu <lixiangyu@xalxzn.com> Date: 星期五, 12 九月 2025 17:56:13 +0800 Subject: [PATCH] feat(cms): 添加刀具归还功能并优化 CuttingReceiveList组件 --- src/views/mdc/common/BaseTree.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/mdc/common/BaseTree.vue b/src/views/mdc/common/BaseTree.vue index 445f539..a32611c 100644 --- a/src/views/mdc/common/BaseTree.vue +++ b/src/views/mdc/common/BaseTree.vue @@ -115,7 +115,7 @@ } , methods: { - ...mapActions(['QueryProduction']), + ...mapActions(['QueryFactory']), getCurrSelectedTitle() { return !this.currSelected.title ? '' : this.currSelected.title }, @@ -149,7 +149,7 @@ queryTreeData() { this.loading = true this.cardLoading = true - this.QueryProduction().then(res => { + this.QueryFactory().then(res => { if (res.success) { this.dataList = [] this.allTreeKeys = [] -- Gitblit v1.9.3