index.js 1.24 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
import Trdgrp from '~/components/business/commonModel/trdgrp';
import Trtp from '~/components/business/commonModel/trtp';
import Finmod from '~/components/business/commonModel/finmod';

export default class Trtcre {
	constructor() {
		this.data = {
      trdgrp: new Trdgrp().data,
      trtp: new Trtp().data,
      finmod: new Finmod().data,
			financ: {
				rzkx1: "", //  融资款项		.financ.rzkx1
				rzkx2: "", //  融资款项		.financ.rzkx2
				rzkx3: "", //  融资款项		.financ.rzkx3
				rzkx4: "", //  融资款项		.financ.rzkx4
				ref2: "", //  业务编号		.financ.ref2
				ref3: "", //  业务编号		.financ.ref3
				ref4: "", //  业务编号		.financ.ref4
				acc: "", //  帐号		.financ.acc
				rzkx5: "", //  融资款项		.financ.rzkx5
				ref5: "", //  业务编号		.financ.ref5
			},
			oppacc: "",			//  对方�'�号		.trtcre.oppacc
			trntyp: "",			//  交易性�'�		.trtcre.trntyp
			oricur: "",			//  Origial Currency		.trtcre.oricur
      oriamt: "",			//  Origial Amt		.trtcre.oriamt
      pctoriamt: "",
      extrat: "",			//  Exchange Rate		.trtcre.extrat
      crefinflg: "",			//  Create Financing		.trtcre.crefinflg
      fiprol:"",
      idType:"",
      zmqflg:"",
      buildParams: {},
      rattxt:"",
		};
	}
}