zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
/**
 * 客户还款管理-历史变更记录列表查询
 */
 
import ApiModel from '@/utils/core/apiModel'
 
// 表格信息
const tableList = [
  {
    label: '客户编号',
    prop: 'customerId',
  },
  {
    label: '客户名称',
    prop: 'customerName'
  },
  {
    label: '手机号码',
    prop: 'phone'
  },
  {
    label: '贷款申请编号',
    prop: 'applySerialNo'
  },
  {
    label: '贷款金额',
    prop: 'businessSum',
    isMoney: true
  },
  {
    label: '还款卡开户行',
    prop: 'accountorgIdDesc'
  },
  {
    label: '还款卡账户名称',
    prop: 'accountName'
  },
  {
    label: '还款卡账号',
    prop: 'accountNo'
  },
  {
    label: '还款账户证件号码',
    prop: 'certId'
  },
  {
    label: '银行预留手机号',
    prop: 'bankReservedPhone'
  },
  {
    label: '操作人',
    prop: 'operaUserName'
  },
  {
    label: '操作人所属机构',
    prop: 'operaOrgName'
  },
  {
    label: '操作时间',
    prop: 'operaTime'
  },
  {
    label: '备注',
    prop: 'remark'
  }
]
 
export default options => {
  // 接口地址,required
  const api = 'server/queryCustomerPayChangeLogList'
  return new ApiModel({
    api,
    tableList,
    request(params) {
      return this.post(params)
    }
  })
}