/** * 本月团队逾期概况表(笔数) */ import ApiModel from '@/utils/core/apiModel'; // 表格信息 const tableList = [ { label: '团队(笔数)', prop: 'name', attrs: { width: 'auto' } }, { label: '合计逾期', prop: 'totalCnt', attrs: { width: 'auto' } }, { label: '逾期1个月', prop: 'overdue1MCnt', attrs: { width: 'auto' } }, { label: '逾期2至3个月', prop: 'overdue2T3MCnt', attrs: { width: 'auto' } }, { label: '逾期3至6个月', prop: 'overdue3T6MCnt', attrs: { width: 'auto' } }, { label: '其中已委外', prop: 'entrustedCnt', attrs: { width: 'auto' } }, { label: '其中已过会暂不委外', prop: 'passEmtNotEntrustCnt', attrs: { width: 'auto' } }, { label: '其中未过会也未委外', prop: 'notEmtNotEntrustCnt', attrs: { width: 'auto' } }, { label: '其中已诉讼', prop: 'lawsuitCnt', attrs: { width: 'auto' } }, { label: '逾期6个月以上', prop: 'overdue6MCnt', attrs: { width: 'auto' } }, { label: '其中已委外', prop: 'd180EntrustCnt', attrs: { width: 'auto' } }, { label: '其中已过会暂不委外', prop: 'd180EmtNotEntrustCnt', attrs: { width: 'auto' } }, { label: '其中未过会也未委外', prop: 'd180NotEmtAndEntrustCnt', attrs: { width: 'auto' } }, { label: '其中已诉讼', prop: 'd180LawsuitCnt', attrs: { width: 'auto' } }, { label: '其中诉讼已出判决结果', prop: 'adjudicatedCnt', attrs: { width: 'auto' } }, ] export default options => { // 接口地址,required const api = 'overdueReport/queryOrgOverdueSummaryList' return new ApiModel({ api, tableList, request(params) { return this.post(params) } }) }