index.js 3.99 KB
Newer Older
“yanyuxin” committed
1 2
import Api from "~/service/Api"
import Pts from "../Common/Pts"
“yanyuxin” committed
3
import Dids from "../Public/Dids"
4 5
import Pub from "../Public"

“yanyuxin” committed
6 7 8

export default class Trtset{
    constructor () {
9
        this.data = {
“yanyuxin” committed
10 11
						trdgrp:{
							rec:{
“yanyuxin” committed
12
								inr:"",
“yanyuxin” committed
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
								pntref:"",			//  父交易参考号		.trdgrp.rec.pntref
								pntnam:"",			//  Name 		.trdgrp.rec.pntnam
								ownref:"",			//  参考号		.trdgrp.rec.ownref
								nam:"",			//  Name		.trdgrp.rec.nam
								pctfin:"",			//  融资比例		.trdgrp.rec.pctfin
								stttendat:"",			//  起息日期		.trdgrp.rec.stttendat
								matdat:"",			//  Maturity Date		.trdgrp.rec.matdat
								fintyp:"",			//  融资品种		.trdgrp.rec.fintyp
								finact:"",			//  融资账号		.trdgrp.rec.finact
								ovdflg:"",			//  Overdue Flag		.trdgrp.rec.ovdflg
								actrat:"",			//  执行利率		.trdgrp.rec.actrat
							},
							cbs:{
								max:{
									cur:"",			//  融资金额		.trdgrp.cbs.max.cur
									amt:"",			//  融资金额		.trdgrp.cbs.max.amt
								},
								opn1:{
									cur:"",			//  余额		.trdgrp.cbs.opn1.cur
									amt:"",			//  Balance		.trdgrp.cbs.opn1.amt
								},
							},
							fip:{
								pts:new Pts().data,
							},
						},
						trtp0:{
							bcdget:{
								sdamod:{
									seainf:"",			//  		.trtp0.bcdget.sdamod.seainf
									dadsnd:"",			//  Drag  Drop Sender		.trtp0.bcdget.sdamod.dadsnd
								},
							},
							ledget:{
								sdamod:{
									seainf:"",			//  		.trtp0.ledget.sdamod.seainf
									dadsnd:"",			//  Drag  Drop Sender		.trtp0.ledget.sdamod.dadsnd
								},
							},
							brdget:{
								sdamod:{
									seainf:"",			//  		.trtp0.brdget.sdamod.seainf
									dadsnd:"",			//  Drag  Drop Sender		.trtp0.brdget.sdamod.dadsnd
								},
							},
							bedget:{
								sdamod:{
									seainf:"",			//  		.trtp0.bedget.sdamod.seainf
									dadsnd:"",			//  Drag  Drop Sender		.trtp0.bedget.sdamod.dadsnd
								},
							},
							recget:{
								sdamod:{
									seainf:"",			//  		.trtp0.recget.sdamod.seainf
									dadsnd:"",			//  Drag  Drop Sender		.trtp0.recget.sdamod.dadsnd
								},
							},
						},
71
						mtabut: new Pub().data.Mtabut,
“yanyuxin” committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
						trtmod:{
							finmod:{
								setlab:"",			//  Settlement Label		.trtmod.finmod.setlab
								fincod:"",			//  借据号		.trtmod.finmod.fincod
								reptyp:"",			//  还款方式		.trtmod.finmod.reptyp
								cbs:{
									cbb:{
										intamt1:"",			//  表外欠息利息		.trtmod.finmod.cbs.cbb.intamt1
										intamty1:"",			//  表外本年欠息		.trtmod.finmod.cbs.cbb.intamty1
										intamt2:"",			//  表内欠息利息		.trtmod.finmod.cbs.cbb.intamt2
										intamty2:"",			//  表内本年欠息		.trtmod.finmod.cbs.cbb.intamty2
										intamt:"",			//  利息		.trtmod.finmod.cbs.cbb.intamt
										amt:"",			//  本金		.trtmod.finmod.cbs.cbb.amt
									},
									cbe:{
										intamt1:"",			//  偿还表外欠息利息		.trtmod.finmod.cbs.cbe.intamt1
										intamty1:"",			//  偿还表外欠息		.trtmod.finmod.cbs.cbe.intamty1
										intamt2:"",			//  偿还表内欠息利息		.trtmod.finmod.cbs.cbe.intamt2
										intamty2:"",			//  偿还表内欠息		.trtmod.finmod.cbs.cbe.intamty2
										intamt:"",			//  偿还本金利息		.trtmod.finmod.cbs.cbe.intamt
										amt:"",			//  偿还本金		.trtmod.finmod.cbs.cbe.amt
									},
									totint:"",			//  偿还利息总额		.trtmod.finmod.cbs.totint
								},
								acttyp:"",			//  第三方还款方式		.trtmod.finmod.acttyp
								act3:"",			//  第三方还款账号		.trtmod.finmod.act3
								intprd:"",			//  计息周期		.trtmod.finmod.intprd
							},
						},
101
						setmod:new Pub().data.Setmod,
“yanyuxin” committed
102 103 104 105
						setamt:"",			//  Settlement Amount		.setamt
						setact:"",			//  Settlement Account		.setact
						clsflg:"",			//  抹�'�		.clsflg
						setact1:"",			//  我行借记�'�户		.setact1
106 107 108
						liaall:new Pub().data.Liaall,
						trnmod:new Pub().data.Trnmod,
						pageId: "",			// ctx的key
“yanyuxin” committed
109
						trtfipl1blk:"",	
“yanyuxin” committed
110 111 112
				}
    }
}