实现风险明细员工负面征信功能
This commit is contained in:
@@ -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"
|
||||
);
|
||||
|
||||
[
|
||||
"employeeCreditNegativeList",
|
||||
"employeeCreditNegativeTotal",
|
||||
"employeeCreditNegativePageNum",
|
||||
"employeeCreditNegativePageSize",
|
||||
"employeeCreditNegativeLoading",
|
||||
"loadEmployeeCreditNegative",
|
||||
"handleEmployeeCreditNegativePageChange",
|
||||
"getOverviewEmployeeCreditNegative",
|
||||
].forEach((token) => assert(source.includes(token), token));
|
||||
Reference in New Issue
Block a user