补充结果总览模型卡片联动交互

This commit is contained in:
wkc
2026-03-20 11:27:46 +08:00
parent 37e6eef26c
commit e147d6dfee
3 changed files with 246 additions and 36 deletions

View File

@@ -0,0 +1,18 @@
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"
);
[
"matchMode",
'matchMode: "ANY"',
"任意触发",
"同时触发",
].forEach((token) => assert(source.includes(token), token));