index.js 2.03 KB
Newer Older
fukai committed
1
import Api from "~/service/Api"
fukai committed
2
import Pts from "~/page/Model/Common/Pts"
fukai committed
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 64 65 66 67 68 69 70 71 72 73 74 75

export default class Fttfcn{
    constructor () {
        this.data = {
						ftdgrp:{
							rec:{
								ownref:"",			//  资金调拨业务参考号		.ftdgrp.rec.ownref
								nam:"",			//  名称		.ftdgrp.rec.nam
								fttyp:"",			//  定存拆借类型		.ftdgrp.rec.fttyp
							},
							cbs:{
								max:{
									cur:"",			//  定存拆借金额		.ftdgrp.cbs.max.cur
									amt:"",			//  定存拆借金额		.ftdgrp.cbs.max.amt
								},
								opn2:{
									cur:"",			//  待销账金额		.ftdgrp.cbs.opn2.cur
									amt:"",			//  Balance		.ftdgrp.cbs.opn2.amt
								},
							},
							tro:{
								pts:new Pts().data,
								dbfadrblkcn:"",			//  Chinese address		.ftdgrp.tro.dbfadrblkcn
							},
							tri:{
								pts:new Pts().data,
								dbfadrblkcn:"",			//  Chinese address		.ftdgrp.tri.dbfadrblkcn
							},
							act:{
								pts:new Pts().data,
								dbfadrblkcn:"",			//  Chinese address		.ftdgrp.act.dbfadrblkcn
							},
						},
						fttp:{
							usr:{
								extkey:"",			//  资金部负责人		.fttp.usr.extkey
							},
							trop:{
								ptsget:{
									sdamod:{
										seainf:"",			//  		.fttp.trop.ptsget.sdamod.seainf
										dadsnd:"",			//  Drag  Drop Sender		.fttp.trop.ptsget.sdamod.dadsnd
									},
								},
							},
							trip:{
								ptsget:{
									sdamod:{
										seainf:"",			//  		.fttp.trip.ptsget.sdamod.seainf
										dadsnd:"",			//  Drag  Drop Sender		.fttp.trip.ptsget.sdamod.dadsnd
									},
								},
							},
							actp:{
								ptsget:{
									sdamod:{
										seainf:"",			//  		.fttp.actp.ptsget.sdamod.seainf
										dadsnd:"",			//  Drag  Drop Sender		.fttp.actp.ptsget.sdamod.dadsnd
									},
								},
							},
						},
						canamt:"",			//  Cancellation Amount		.canamt
						setmod:{
							doccur:"",			//  实际消账金额		.setmod.doccur
						},
						mtabut:{
							clsflg:"",			//  Close Flag		.mtabut.clsflg
						},
						pageId: ""			// ctx的key
				}
    }
}