Check.js 678 Bytes
Newer Older
chenwen committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
import Utils from "~/utils"

/**
* Ditcan Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "didgrp.blk.canrsn"                      :null,
    "setmod.dspflg"                      :null,
    "sndmsg"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "setmod.docamt"                      :null,
    "ditcanf.strinf"                      :null,
    "ditp0.recget.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