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
import Api from "~/service/Api"
import Pts from "../Common/Pts"
export default class Fctcan{
constructor () {
this.data = {
fcdgrp:{
apl:{
pts:new Pts().data,
pta:{
nam1:"", // Externally Visible Name of Address .fcdgrp.apl.pta.nam1
},
},
rec:{
ownref:"", // Our Reference .fcdgrp.rec.ownref
cur:"", // currency .fcdgrp.rec.cur
amt:"", // 保证金金额 .fcdgrp.rec.amt
reason:"", // collect reason .fcdgrp.rec.reason
extact:"", // Extend Account .fcdgrp.rec.extact
engact:"", // Engagement account .fcdgrp.rec.engact
},
},
aplp:{
ptsget:{
sdamod:{
dadsnd:"", // Drag Drop Sender .aplp.ptsget.sdamod.dadsnd
seainf:"", // .aplp.ptsget.sdamod.seainf
},
},
},
gleflg:"", // 是否过�'� .gleflg
cshstm:"", // stream of csh .cshstm
errflg:"", // 已使用保证金 .errflg
pageId: "" // ctx的key
}
}
}