index.js 2.15 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
import Brdgrp from '~/components/business/commonModel/brdgrp';
import Lidgrp from '~/components/business/commonModel/lidgrp';
import Pub from '~/components/business/commonModel/index.js';

export default class Brtadd {
	constructor() {
		this.data = {
			brdgrp: new Brdgrp().data,
			lidgrp: new Lidgrp().data,
			addamtflg:'',
			trndia: new Pub().data.Trndia,
			brtp: {
				lidget: {
					sdamod: {
						seainf: "",			//  		.brtp.lidget.sdamod.seainf
						dadsnd: "",			//  Drag  Drop Sender		.brtp.lidget.sdamod.dadsnd
					},
				},
				recget: {
					sdamod: {
						dadsnd: "",			//  Drag  Drop Sender		.brtp.recget.sdamod.dadsnd
						seainf: "",			//  		.brtp.recget.sdamod.seainf
					},
				},
				matp: {
					mattxtlab: "",			//  Label for MATTXT		.brtp.matp.mattxtlab
				},
				prechkdat: "",			//  预计核验日期		.brtp.prechkdat
				ischktyp: "",			//  是否需要核验		.brtp.ischktyp
				docgrdm: {
					docdsclab: "",			//  Label of document description		.brtp.docgrdm.docdsclab
				},
				cre752flg: "",			//  Create 752		.brtp.cre752flg
				furide: "",			//  Further Identification		.brtp.furide
				cre732flg: "",			//  Create MT 732		.brtp.cre732flg
				countrycode: "",			//  Country or Region Code		.brtp.countrycode
				shpp: {
					ptsget: {
						sdamod: {
							seainf: "",			//  		.brtp.shpp.ptsget.sdamod.seainf
							dadsnd: "",			//  Drag  Drop Sender		.brtp.shpp.ptsget.sdamod.dadsnd
						},
					},
				},
				connum: "",			//  Contract Number		.brtp.connum
			},
			limchg: {
				ptyextkey: "",			//  额度主体		.limchg.ptyextkey
				othextkey: "",			//  单笔单批		.limchg.othextkey
				lim: {
					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
				},
			},
		}
	}
}