完成结果总览页面前端实现

This commit is contained in:
wkc
2026-03-19 10:39:24 +08:00
parent e4706fb7e8
commit a508977472
8 changed files with 111 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
const assert = require("assert");
const fs = require("fs");
const path = require("path");
const source = fs.readFileSync(
path.resolve(
__dirname,
"../../src/views/ccdiProject/components/detail/PreliminaryCheck.vue"
),
"utf8"
);
["pageState === 'loading'", "pageState === 'empty'", "el-skeleton", "el-empty"].forEach(
(token) => {
assert(source.includes(token), `缺少页面状态结构: ${token}`);
}
);