/** * 客户还款管理-基本信息列表查询 */ import ApiModel from '@/utils/core/apiModel' // 表格信息 const formList = [ { type: 'input', attrs: ['readonly'], value: '', label: '客户编号', name: 'customerId' }, { type: 'input', attrs: ['readonly'], value: '', label: '客户名称', name: 'customerName' }, { type: 'input', attrs: ['readonly'], value: '', label: '证件类型', name: 'certTypeDesc' }, { type: 'input', attrs: ['readonly'], value: '', label: '证件号码', name: 'certId' }, { type: 'input', rules: [{ required: true }], value: '', label: '手机号码', name: 'phone' }, ] export default (options = {}) => { // 接口地址: required const api = 'server/queryCustomerInfoChange' return new ApiModel({ api, formList, request(params) { return this.post(params) } }) }