index.js 714 Bytes
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
import Pub from '~/components/business/commonModel/index.js';
import Ledgrp from '~/components/business/commonModel/ledgrp';
import Letp from '~/components/business/commonModel/letp';


export default class Letrop{
    constructor () {
        this.data = {
			ledgrp: new Ledgrp().data,
			letp: new Letp().data,
            pageId: ""	,		// ctx的key
            setmod: new Pub().data.Setmod,
            mtabut: new Pub().data.Mtabut,
            trnmod: new Pub().data.Trnmod,
            liaall: new Pub().data.Liaall,
            // limmod: new Pub().data.Limmod,
            // liaccv: new Pub().data.Liaccv,
            docpan: new Pub().data.Docpan,
            trndia: new Pub().data.Trndia,
		}
    }
}