index.js 1.28 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
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp';
import Letp from '~/components/business/commonModel/letp';
import Bedgrp from '~/components/business/commonModel/bedgrp';
import Betp from '~/components/business/commonModel/betp';
import Rmbclm from '~/components/business/commonModel/rmbclm';
import Srm from '~/components/business/commonModel/srm';

export default class Letdrw {
    constructor() {
        this.data = {
            ledgrp: new Ledgrp().data,
            letp:new Letp().data,
            oldledgrp: new Ledgrp().data,

            bedgrp: new Bedgrp().data,
            srm: new Srm().data,
            betp: new Betp().data,
            oldbedgrp:new Bedgrp().data,
            rmbclm: new Rmbclm().data,

            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,
            trndia: new Pub().data.Trndia,
        };
    }
}