补充异常账户人员前端查询状态

This commit is contained in:
wkc
2026-03-31 21:07:24 +08:00
parent 001597d5e8
commit 4dca2b2b63
3 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
const assert = require("assert");
const fs = require("fs");
const path = require("path");
const source = fs.readFileSync(
path.resolve(
__dirname,
"../../src/views/ccdiProject/components/detail/RiskDetailSection.vue"
),
"utf8"
);
[
"getOverviewAbnormalAccountPeople",
"abnormalAccountLoading",
"abnormalAccountPageNum",
"abnormalAccountPageSize",
"abnormalAccountTotal",
"abnormalAccountList",
"handleAbnormalAccountPageChange",
"loadAbnormalAccountPeople",
].forEach((token) => assert(source.includes(token), token));