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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
| /**
| * 中航信托线下转账-认领明细列表查询
| */
|
| import ApiModel from '@/utils/core/apiModel'
|
| // 表单信息
| const formList = [
| {
| type: 'input',
| label: '转账账户',
| value: '',
| name: 'rpyAcc'
| },
| {
| type: 'input',
| label: '转账账户户名',
| value: '',
| name: 'rpyNam'
| },
| {
| type: 'dateRange',
| label: '转账到账日期',
| value: '',
| name: 'rpyAccountDate',
| names: ['rpyAccountDateBegin', 'rpyAccountDateEnd']
| },
| {
| type: 'input',
| label: '认领贷款申请编号',
| value: '',
| name: 'applySerialNo'
| }
| ]
|
| // 表格信息
| const tableList = [
| {
| label: '银行转账流水',
| prop: 'trxnbr'
| },
| {
| label: '转账账户',
| prop: 'rpyAcc'
| },
| {
| label: '转账账户户名',
| prop: 'rpyNam'
| },
| {
| label: '转账到账日期',
| prop: 'rpyAccountDate'
| },
| {
| label: '转账金额',
| prop: 'crtAmt',
| isMoney: true
| },
| {
| label: '认领金额',
| prop: 'transactionAmt',
| isMoney: true
| },
| {
| label: '认领贷款申请编号',
| prop: 'applyserialNo'
| },
| {
| label: '认领客户名称',
| prop: 'customerName'
| },
| {
| label: '认领日期',
| prop: 'inputTime'
| },
| {
| label: '认领人',
| prop: 'inputUserId'
| }
| ]
|
| export default options => {
| // 接口地址,required
| const api = 'server/queryZhTrustClaimList'
| return new ApiModel({
| api,
| formList,
| tableList,
| request(params) {
| return this.post(params)
| }
| })
| }
|
|