From 31c21c7bb5c666df7bebf593968b0ab27494ca0a Mon Sep 17 00:00:00 2001 From: ljx <15723110242@139.com> Date: Sat, 23 Aug 2025 03:30:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/out/outDesignTable/index.vue | 103 ++++++++------ src/views/out/outDesignTableVS/index.vue | 165 +++++++++++------------ 2 files changed, 139 insertions(+), 129 deletions(-) diff --git a/src/views/out/outDesignTable/index.vue b/src/views/out/outDesignTable/index.vue index dff39c3..ae8a4f0 100644 --- a/src/views/out/outDesignTable/index.vue +++ b/src/views/out/outDesignTable/index.vue @@ -1,44 +1,54 @@ @@ -66,8 +76,23 @@ const data = reactive({ month: undefined } }); - +const activeTab = ref('1'); const { queryParams } = toRefs(data); +const tabList = [ + { + value: '1', + label: '对甲采购设计报表' + }, + { + value: '2', + label: '对乙采购设计报表' + } +]; +const handleTabChange = (tab) => { + activeTab.value = tab; + data.queryParams.valueType = '1'; + data.queryParams.month = ''; +}; /** 查询项目总产值分配列表 */ const getList = async () => { diff --git a/src/views/out/outDesignTableVS/index.vue b/src/views/out/outDesignTableVS/index.vue index eb4b502..13b6b18 100644 --- a/src/views/out/outDesignTableVS/index.vue +++ b/src/views/out/outDesignTableVS/index.vue @@ -1,7 +1,7 @@ - + +