搭建结果总览项目分析弹窗骨架

This commit is contained in:
wkc
2026-03-25 14:05:30 +08:00
parent 137d6630fe
commit a13c73f9a8
7 changed files with 422 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
const assert = require("assert");
const fs = require("fs");
const path = require("path");
const dialog = fs.readFileSync(
path.resolve(
__dirname,
"../../src/views/ccdiProject/components/detail/ProjectAnalysisDialog.vue"
),
"utf8"
);
[
'activeTab: "abnormalDetail"',
"resetDialogState()",
'this.activeTab = "abnormalDetail"',
"handleDialogClosed()",
"if (value) {",
"this.resetDialogState()",
].forEach((token) => assert(dialog.includes(token), token));