index.js 1.44 KB
Newer Older
fukai committed
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 38 39 40 41 42 43 44 45 46 47
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp';
import Bedgrp from '~/components/business/commonModel/bedgrp';
import Bpdgrp from '~/components/business/commonModel/bpdgrp';
import Betp from '~/components/business/commonModel/betp';
export default class Betset {
    constructor() {
        this.data = {
        nar754:"",
        clsflg:'',
        amt2okflg:"",
        disabledClsflg:'',
        aamset: {
            utlamt: '',
            utlamt2: ''
        },
        recpan: {
            trnlst: ''
        },
        lendoc: {
            actflg: '',
            decnum: '',
            vercerref: '',
            account: ''
        },
        betp: new Betp().data,
        ledgrp: new Ledgrp().data,
        bedgrp: new Bedgrp().data,
        bpdgrp:new Bpdgrp().data,
        bopgat: new Pub().data.Bopgat,
        rmbbop: new Pub().data.Rmbbop,
        setmod: new Pub().data.Setmod,
        mtabut: new Pub().data.Mtabut,
        trnmod: new Pub().data.Trnmod,
        liaall: new Pub().data.Liaall,
        liaccv: new Pub().data.Liaccv,
        docpan: new Pub().data.Docpan,
        limmod: new Pub().data.Limmod,
        umdmod: new Pub().data.Umdmod,
        entmod: new Pub().data.Entmod,
        bptbck: new Pub().data.Bptbck,
        cfabop: new Pub().data.Cfabop,
        trndia: new Pub().data.Trndia,
      }
    }
}