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
47
48
49
50
51
52
import Api from "~/service/Api"
import Pts from "../Common/Pts"
export default class Cfasel{
constructor () {
this.data = {
eblstm:"", // Selection .eblstm
cfaquep:{
cfatyp:"", // 申报类型 .cfaquep.cfatyp
frmdat:"", // From .cfaquep.frmdat
tildat:"", // Until .cfaquep.tildat
ownextkey:"", // Initial Code .cfaquep.ownextkey
staflg:"", // 至 .cfaquep.staflg
dattyp:"", // 查询日期类型 .cfaquep.dattyp
rptno:"", // 申报号码 .cfaquep.rptno
sum:"", // 笔数 .cfaquep.sum
ownref:"", // 业务编号 .cfaquep.ownref
},
eadstm:"", // EAD Selection .eadstm
eafstm:"", // EAF Selection .eafstm
ebastm:"", // EBA Selection .ebastm
ecastm:"", // ECA Selection .ecastm
errcfa:{
msgstm:"", // Select Error Message .errcfa.msgstm
rptno:"", // 申报编号 .errcfa.rptno
},
cfarec: {
eadgrp: {
bas: {
sta: ""
}
},
eafgrp: {
bas: {
sta: ""
}
},
ebagrp: {
bas: {
sta: ""
}
},
ecagrp: {
bas: {
sta: ""
}
},
},
pageId: "" // ctx的key
}
}
}