index.js 2.19 KB
Newer Older
fukai committed
1
import Api from "~/service/Api"
fukai committed
2
import Pts from "~/page/Model/Common/Pts"
吴佳 committed
3
import Pub from "../../../../components/business/commonModel/index.js";
fukai committed
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

export default class Fxteqo{
    constructor () {
        this.data = {
						fxdgrp:{
							rec:{
								ownref:"",			//  外汇买卖业务参考号		.fxdgrp.rec.ownref
								nam:"",			//  名称		.fxdgrp.rec.nam
								fxtyp:"",			//  外汇买卖类型		.fxdgrp.rec.fxtyp
								rat:"",			//  对外牌价		.fxdgrp.rec.rat
								midrat:"",			//  中间价		.fxdgrp.rec.midrat
								opndat:"",			//  交易日期		.fxdgrp.rec.opndat
								valdat:"",			//  生效日		.fxdgrp.rec.valdat
								dsp:"",			//  买入外币账号		.fxdgrp.rec.dsp
								acc:"",			//  买入外币账号		.fxdgrp.rec.acc
								acc2:"",			//  卖出外币账号		.fxdgrp.rec.acc2
								dsp2:"",			//  卖出外币账号		.fxdgrp.rec.dsp2
							},
							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:{
							usr:{
								extkey:"",			//  业务负责人		.fxtp.usr.extkey
							},
							usrget:{
								sdamod:{
									seainf:"",			//  		.fxtp.usrget.sdamod.seainf
								},
							},
							aplp:{
								ptsget:{
									sdamod:{
										seainf:"",			//  		.fxtp.aplp.ptsget.sdamod.seainf
										dadsnd:"",			//  Drag  Drop Sender		.fxtp.aplp.ptsget.sdamod.dadsnd
									},
								},
							},
							amtlab:"",			//  Amount Label		.fxtp.amtlab
							cnylab:"",			//  Amount LabelCNY		.fxtp.cnylab
							frgchk:"",			//  外币		.fxtp.frgchk
							cnychk:"",			//  人民币		.fxtp.cnychk
							calflg:"",			//  Calculate		.fxtp.calflg
							cshflg:"",			//  钞汇标志		.fxtp.cshflg
						},
吴佳 committed
64 65 66
						setmod: new Pub().data.Setmod,
						docpan: new Pub().data.Docpan,
						trndia: new Pub().data.Trndia,
fukai committed
67 68 69
				}
    }
}