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
38
39
40
41
42
43
44
45
46
import Pub from '~/components/business/commonModel/index.js';
import Pts from '~/components/business/commonModel/Pts';
import Bfdgrp from '~/components/business/commonModel/bfdgrp';
import Dedgrp from '~/components/business/commonModel/dedgrp';
import Bpdgrp from '~/components/business/commonModel/bpdgrp';
import Bftp from '~/components/business/commonModel/bftp';
export default class Bftset {
constructor() {
this.data = {
crefinflg:"",
clsflg:"",
dedclsflg:"",
forflg:"", //票据转卖
strinf: "", // 描述 .detcanf.strinf
sndmsg: "", // Send Message .sndmsg
trtcre: {
crefinflg: "", // Create Financing .trtcre.crefinflg
trtp: {
wbdcre: {
wbdp: {
act: "", // 外汇贷款专户 .trtcre.trtp.wbdcre.wbdp.act
actpro: "", // 外管局账户性质 .trtcre.trtp.wbdcre.wbdp.actpro
},
},
},
},
pageId: "", // ctx的key
bfdgrp: new Bfdgrp().data,
dedgrp: new Dedgrp().data,
bpdgrp: new Bpdgrp().data,
bftp: new Bftp().data,
// dftcre: new Pub().data.Dftcre,
bptbck: new Pub().data.Bptbck,
setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall,
liaccv: new Pub().data.Liaccv,
docpan: new Pub().data.Docpan,
limmod: new Pub().data.Limmod,
doctre: new Pub().data.Doctre,
trndia: new Pub().data.Trndia,
}
}
}