1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import Utils from "~/utils"
/**
* Inffec Check规则
*/
let checkObj = {
"rec.permaxtr3" :null,
"rec.permaxtr4" :null,
"rec.permaxtr2" :null,
"recpan.feeget.sdamod.dadsnd" :null,
"rec.permaxtr7" :null,
"rec.permaxtr5" :null,
"rec.permaxtr6" :null,
"recpan.cty.cod" :null,
"rec.ratcur" :null,
"rec.begdat" :null,
"recpan.etyget.sdamod.dadsnd" :null,
"rec.maxamt" :null,
"recpan.pty.extkey" :null,
"rec.pertyp" :null,
"rec.enddat" :null,
"recpan.reg.cod" :null,
"rec.mincur" :null,
"recpan.recget.sdamod.dadsnd" :null,
"rec.maxcur" :null,
"rec.feepri" :null,
"recpan.fee.cod" :null,
"recpan.ptyget.sdamod.dadsnd" :null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj