优化结果总览模型卡片加载反馈

This commit is contained in:
wkc
2026-03-20 14:19:48 +08:00
parent 2bc4f00ce6
commit ad20d356af
3 changed files with 54 additions and 2 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/RiskModelSection.vue"
),
"utf8"
);
[
"this.cardLoading = true",
"this.cardLoading = false",
"white-space: nowrap",
].forEach((token) => assert(source.includes(token), token));