index.js 2.62 KB
Newer Older
hewei committed
1 2 3
import Api from "~/service/Api";
import Pts from "~/page/Model/Common/Pts";
import Pub from "~/components/business/commonModel/index.js";
fukai committed
4

hewei committed
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
export default class Fxtsqo {
	constructor() {
		this.data = {
			fxdgrp: {
				rec: {
					ownref: "",			//  结售汇业务参考号		.fxdgrp.rec.ownref
					nam: "",			//  名称		.fxdgrp.rec.nam
					fxtyp: "",			//  结售汇类型		.fxdgrp.rec.fxtyp
					opndat: "",			//  登记日期		.fxdgrp.rec.opndat
					valdat: "",			//  起息日		.fxdgrp.rec.valdat
					setdat: "",			//  远期交割日		.fxdgrp.rec.setdat
					setdatfrm: "",			//  择期交割起始日		.fxdgrp.rec.setdatfrm
					setdatto: "",			//  择期交割截止日		.fxdgrp.rec.setdatto
					rat: "",			//  对外牌价		.fxdgrp.rec.rat
					midrat: "",			//  中间价		.fxdgrp.rec.midrat
					quoref: "",			//  询价编号		.fxdgrp.rec.quoref
					fudref: "",			//  资金部编号		.fxdgrp.rec.fudref
					trnman: "",			//  交易主体		.fxdgrp.rec.trnman
					trdint: "",			//  结售汇类型		.fxdgrp.rec.trdint
					trdout: "",			//  结售汇类型		.fxdgrp.rec.trdout
					ownusr: "",			//  业务负责人		.fxdgrp.rec.ownusr
					dsp: "",			//  外币结算账号		.fxdgrp.rec.dsp
					acc: "",			//  外币结算账号		.fxdgrp.rec.acc
					dsp2: "",			//  本币结算账号		.fxdgrp.rec.dsp2
					acc2: "",			//  本币结算账号		.fxdgrp.rec.acc2
				},
				apl: {
					pts: new Pts().data,
					dbfadrblkcn: "",			//  Chinese address		.fxdgrp.apl.dbfadrblkcn
				},
				cbs: {
					max: {
						cur: "",			//  Currency		.fxdgrp.cbs.max.cur
						amt: "",			//  Balance		.fxdgrp.cbs.max.amt
					},
					nom1: {
						cur: "",			//  Currency		.fxdgrp.cbs.nom1.cur
						amt: "",			//  Balance		.fxdgrp.cbs.nom1.amt
					},
				},
				blk: {
					remark: "",			//  备注		.fxdgrp.blk.remark
				},
			},
			fxtp: {
				aplp: {
					ptsget: {
						sdamod: {
							seainf: "",			//  		.fxtp.aplp.ptsget.sdamod.seainf
							dadsnd: "",			//  Drag  Drop Sender		.fxtp.aplp.ptsget.sdamod.dadsnd
fukai committed
55
						},
hewei committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
					},
				},
				amtlab: "",			//  Amount Label		.fxtp.amtlab
				cnylab: "",			//  Amount LabelCNY		.fxtp.cnylab
				frgchk: "",			//  外币		.fxtp.frgchk
				cnychk: "",			//  人民币		.fxtp.cnychk
				cshflg: "",			//  钞汇标志		.fxtp.cshflg
			},
			mtabut: {
				clsflg: "",			//  Close Flag		.mtabut.clsflg
			},
			fxtapll1blk: "",			//  XMLPanel fxtapll1的内置block		.fxtapll1blk
			fxtapll2blk: "",			//  XMLPanel fxtapll2的内置block		.fxtapll2blk
			pageId: "",			// ctx的key
			setmod: new Pub().data.Setmod,
			docpan: new Pub().data.Docpan,
			liaccv: new Pub().data.Liaccv,
hewei committed
73
			trndia: new Pub().data.Trndia,
hewei committed
74 75
		}
	}
fukai committed
76
}