check.js 727 Bytes
import DftcreCheck from '../../../../components/business/dftcre/model/check.js';
import TrtcreCheck from '../../../../components/business/trtcre/model/check.js';
import RmbbopCheck from "../../../../components/business/rmb/rmbbop/model/check";
import CfabopCheck from '~/components/business/cfa/cfabop/model/check.js';
import BoppayCheck from "../../../../components/business/Boppay/model/check"

export default function () {
    return {
        ...new DftcreCheck(this).check,
        ...new TrtcreCheck(this).check,
        ...new RmbbopCheck(this).check,
        ...new CfabopCheck(this).check,
        ...new BoppayCheck(this).check,
        "cmtflg":[
          {required: true, message: "必输项"},
        ]
    }
}