实现项目打标状态联动并执行前后端适配

This commit is contained in:
wkc
2026-03-18 15:55:55 +08:00
parent e9394939c9
commit c0ce5ca7f9
27 changed files with 651 additions and 14 deletions

View File

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