/** * 客户还款管理-扣款信息列表查询 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const tableList = [ { label: '贷款申请编号', prop: 'applySerialNo', attrs: { width: 'auto' } }, { label: '客户名称', prop: 'customerName', attrs: { width: 'auto' } }, { label: '贷款金额', prop: 'businessSum', attrs: { width: 'auto' }, isMoney: true }, { label: '贷款状态', prop: 'businessStatusDesc', attrs: { width: 'auto' } }, { label: '还款卡开户行', prop: 'accountorgDesc', attrs: { width: 'auto' } }, { label: '还款卡账户名称', prop: 'accountName', attrs: { width: 'auto' } }, { label: '还款卡账户证件号码', prop: 'certId', attrs: { width: 'auto' } }, { label: '银行预留手机号码', prop: 'phone', attrs: { width: 'auto' } }, { prop: 'action', label: '操作管理', attrs: { // width: '260px', fixed: 'right' }, type: 'buttons' } ] export default options => { // 接口地址,required const api = 'server/queryCustomerAccountInfoList' return new ApiModel({ api, tableList, request(params) { return this.post(params) } }) }