实现流程项目逻辑删除与恢复

This commit is contained in:
wkc
2026-07-02 10:54:36 +08:00
parent 2f53fc4d1e
commit 57a33098c9
27 changed files with 690 additions and 97 deletions

View File

@@ -23,5 +23,14 @@ assert(
!source.includes("::v-deep .el-table"),
"项目列表不应继续保留自定义深度表格皮肤"
);
assert(
source.includes('class="delete-button"'),
"项目列表删除按钮应使用独立红色样式类"
);
assert(
source.includes("::v-deep .el-button--text.delete-button") &&
source.includes("color: #f56c6c"),
"项目列表删除按钮应渲染为红色"
);
console.log("project-table-style test passed");