From 03554cf9532b27cd9511572155252a3ff5ef94aa Mon Sep 17 00:00:00 2001 From: wkc <978997012@qq.com> Date: Fri, 27 Feb 2026 16:52:57 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=A7=BB=E9=99=A4=E6=97=A0?= =?UTF-8?q?=E7=94=A8=E7=9A=84=20getStatusType=20=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/ccdiProject/components/ProjectTable.vue | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue b/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue index e9d79ac..1b0f8ee 100644 --- a/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue +++ b/ruoyi-ui/src/views/ccdiProject/components/ProjectTable.vue @@ -190,15 +190,6 @@ export default { } }, methods: { - getStatusType(status) { - const statusMap = { - '0': 'primary', // 进行中 - '1': 'success', // 已完成 - '2': 'info' // 已归档 - } - return statusMap[status] || 'info' - }, - getStatusColor(status) { const colorMap = { '0': '#1890ff', // 进行中 - 蓝色