调整结果总览页面样式与文案

This commit is contained in:
wkc
2026-03-19 11:02:16 +08:00
parent a508977472
commit 42847ffdba
13 changed files with 116 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
const assert = require("assert");
const fs = require("fs");
const path = require("path");
const source = fs.readFileSync(
path.resolve(
__dirname,
"../../src/views/ccdiProject/components/detail/OverviewStats.vue"
),
"utf8"
);
assert(source.includes(".section-header"), "缺少结果总览标题区样式");
assert(source.includes("margin-bottom: 10px;"), "标题区与统计卡片间距应收紧到 10px");