/** * 分级更新查询明细 */ import ApiModel from '@/utils/core/apiModel'; // 表单信息 const tableList = [ { label: '申请编号', attrs: { width:'180px'}, prop: 'applyserialno', }, { label: '客户名称', prop: 'customername', }, { label: '贷款分级', prop: 'classification', }, { label: '计提比例', prop: 'provisionratio', }, { label: '定级月份', prop: 'rankmonth', }, { label: '验证结果', prop: 'isuse', }, { label: '验证描述', prop: 'isuseremark', } ]; export default options => { // 接口地址: required const api = 'server/queryClassUpdateInfo'; return new ApiModel({ api, tableList, request(body) { return this.post(body); } }); };