index.js 1.32 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
import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js';
import Didgrp from '~/components/business/commonModel/didgrp';
import Ditp from '~/components/business/commonModel/ditp';

export default class Ditzsq {
	constructor() {
		this.data = {
            didgrp: new Didgrp().data,
            ditp:  new Ditp().data,
			limchg: {
				ptyextkey: "", //  额度主体		.limchg.ptyextkey
				othextkey: "", //  单笔单批		.limchg.othextkey
				tyflg: "",
				lim: {
					inr: "",
					sfzsqyw: "", //  是否转授权业务		.limchg.lim.sfzsqyw
					mgskhbh: "", //  转授权客户编号		.limchg.lim.mgskhbh
					sffgsyw: "", //  是否分公司业务		.limchg.lim.sffgsyw
					zgskhbh: "", //  总公司客户编号		.limchg.lim.zgskhbh
					othmflg: "", //  是否转授权业务		.limchg.lim.othmflg
					othmgs: "", //  转授权客户编号		.limchg.lim.othmgs
					othfflg: "", //  是否分公司业务		.limchg.lim.othfflg
					othzgs: "", //  总公司客户编号		.limchg.lim.othzgs
				},
			},

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