import Utils from "~/utils" /** * Msgstp Check规则 */ let checkObj = { "msgp.rcvbnk.pty.extkey" :null, "msgp.typ" :null, "msgp.msgtyp" :null, } for (const key in checkObj) { if (Object.hasOwnProperty.call(checkObj, key)) { checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key) } } export default checkObj