From dfb200f86d8a7ed44f800d3b2c1a0a70a1aff173 Mon Sep 17 00:00:00 2001 From: wkc <978997012@qq.com> Date: Fri, 27 Feb 2026 14:10:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20SearchBar=20?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=80=BC=E6=98=A0=E5=B0=84=EF=BC=8C=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E5=90=8E=E7=AB=AF=E4=B8=80=E8=87=B4=E7=9A=84=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/ccdiProject/components/SearchBar.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ruoyi-ui/src/views/ccdiProject/components/SearchBar.vue b/ruoyi-ui/src/views/ccdiProject/components/SearchBar.vue index 60d17ac..9c955ae 100644 --- a/ruoyi-ui/src/views/ccdiProject/components/SearchBar.vue +++ b/ruoyi-ui/src/views/ccdiProject/components/SearchBar.vue @@ -35,9 +35,9 @@ export default { type: Object, default: () => ({ all: 0, - ongoing: 0, - completed: 0, - archived: 0 + '0': 0, + '1': 0, + '2': 0 }) } }, @@ -47,9 +47,9 @@ export default { activeTab: 'all', tabs: [ { label: '全部项目', value: 'all', count: 0 }, - { label: '进行中', value: 'ongoing', count: 0 }, - { label: '已完成', value: 'completed', count: 0 }, - { label: '已归档', value: 'archived', count: 0 } + { label: '进行中', value: '0', count: 0 }, + { label: '已完成', value: '1', count: 0 }, + { label: '已归档', value: '2', count: 0 } ] } },