From 2b989e1d4676a39f0295400b3aa30ad314501da7 Mon Sep 17 00:00:00 2001 From: Teo <2642673902@qq.com> Date: Thu, 4 Sep 2025 18:40:25 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=87=E8=B4=AD=E8=AE=BE=E8=AE=A1=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8=E6=96=B0=E5=A2=9Etab=E5=88=87=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/out/outDesignTable/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/out/outDesignTable/index.vue b/src/views/out/outDesignTable/index.vue index cdb6652..58bef11 100644 --- a/src/views/out/outDesignTable/index.vue +++ b/src/views/out/outDesignTable/index.vue @@ -86,13 +86,14 @@ const handleTabChange = (tab) => { activeTab.value = tab; data.queryParams.valueType = '1'; // data.queryParams.month = ''; + getList(); }; /** 查询项目总产值分配列表 */ const getList = async () => { loading.value = true; - const res = await listOutTable(queryParams.value); + const res = await listOutTable({ ...queryParams.value, type: activeTab.value }); valueAllocationList.value = res.rows; total.value = res.total; loading.value = false;