Refactor project pages and update related docs

This commit is contained in:
wkc
2026-05-28 16:37:51 +08:00
parent 66d34c7ceb
commit 67f206be1b
40 changed files with 730 additions and 785 deletions

View File

@@ -98,7 +98,7 @@
>
<template slot-scope="scope">
<el-button
v-if="scope.row.status === '0' || scope.row.status === '3'"
v-if="['0', '3', '4'].includes(scope.row.status)"
size="mini"
type="text"
icon="el-icon-right"
@@ -199,6 +199,7 @@ export default {
1: "#52c41a",
2: "#8c8c8c",
3: "#fa8c16",
4: "#f56c6c",
};
return colorMap[status] || "#8c8c8c";
},