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

export default class Ditame {
	constructor() {
		this.data = {
			ditamep: {
				hwmsupdate:"",
				djyqupdate:"",
				fjtkupdate:"",
				zsupdate:"",
				ramrollab: "",			//  Label for RAMROL		.ditamep.ramrollab
				recget: {
					sdamod: {
						seainf: "",			//  参考号		.ditamep.recget.sdamod.seainf
						dadsnd: "",			//  Drag  Drop Sender		.ditamep.recget.sdamod.dadsnd
					},
				},
				engcur: "",			//  修改总金额		.ditamep.engcur
				engamt: "",			//  修改总金额		.ditamep.engamt
				maxcur: "",			//  Currency of Maximum Amount		.ditamep.maxcur
				maxamt: "",			//  New Maximum Amount		.ditamep.maxamt
				cre707flg: "",			//  Create Amendment Message		.ditamep.cre707flg
				ramrol: "",			//  Request of Amendment send to		.ditamep.ramrol
				amenbr: 0,			//  实际修改次数		.ditamep.amenbr
				hwzydi: "",			//  槧运装运地/服务提供低		.ditamep.hwzydi
				zchday: "",			//  最迟装运/服务提供日		.ditamep.zchday
				newday: "",			//  新最迟日期		.ditamep.newday
				msgtyp: "",			//  报文类型		.ditamep.msgtyp
				hfcur: "",			//  新货物贸易合同金额		.ditamep.hfcur
				hfmdes: "",			//  槧物/服务槸易描述		.ditamep.hfmdes
			},
			didgrp: new Didgrp().data,
			olddidgrp: new Didgrp().data,
			ditp:  new Ditp().data,
			ameadvrmk: "",			//  特殊规定条件		.ameadvrmk
			litameadv: "",			//  特殊规定		.litameadv
			bchname: "",			//  branch  name		.bchname
			issadr: "",			//  ADDRESS		.issadr
			pobzip: "",			//  ZIP Code Used when Addressing Postbox		.pobzip
			tel: "",			//  TEL PHONE		.tel
			fax: "",			//  FAX		.fax
			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,
			docpan: new Pub().data.Docpan,
			doctre: new Pub().data.Doctre,
			liaccv: new Pub().data.Liaccv,
			trndia: new Pub().data.Trndia,
			swiadd: new Swiadd().data,
			imgInvmod: new Pub().data.Invchk,
		}
	}
}