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
| /**
| * 待还还款计划信息
| */
|
| import ApiModel from '@/utils/core/apiModel'
|
| // 表格信息
| const tableList = [
| {
| label: '期次',
| attrs: { width: 'auto' },
| prop: 'periodNo'
| },
| {
| label: '计划还款日',
| attrs: { width: 'auto' },
| prop: 'payDate'
| },
| {
| label: '本期待还本金',
| attrs: { width: 'auto' },
| prop: 'principalBalance',
| isMoney: true
| },
| {
| label: '本期待还利息',
| attrs: { width: 'auto' },
| prop: 'interestBalance',
| isMoney: true
| },
| {
| label: '本期待还罚息',
| attrs: { width: 'auto' },
| prop: 'penaltyBalance',
| isMoney: true
| },
| {
| label: '本期待还费用',
| attrs: { width: 'auto' },
| prop: 'feeBalance',
| isMoney: true
| }
| ]
|
| export default options => {
| // 接口地址,required
| const api = 'server/claimRepaymentPlan'
| return new ApiModel({
| api,
| tableList,
| request(params) {
| return this.post(params)
| }
| })
| }
|
|