/** * 本月团队逾期概况表(金额) */ import ApiModel from '@/utils/core/apiModel'; // 表格信息 const tableList = [ { label: '团队(金额)', prop: 'name', attrs: { width: 'auto' } }, { label: '合计逾期', prop: 'totalAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '逾期1个月', prop: 'overdue1MAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '逾期2至3个月', prop: 'overdue2T3MAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '逾期3至6个月', prop: 'overdue3T6MAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中已委外', prop: 'entrustedAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中已过会暂不委外', prop: 'passEmtNotEntrustAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中未过会也未委外', prop: 'notEmtNotEntrustAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中已诉讼', prop: 'lawsuitAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '逾期6个月以上', prop: 'overdue6MAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中已委外', prop: 'd180EntrustAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中已过会暂不委外', prop: 'd180EmtNotEntrustAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中未过会也未委外', prop: 'd180NotEmtAndEntrustAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中已诉讼', prop: 'd180LawsuitAmt', attrs: { width: 'auto' }, isMoney: true, }, { label: '其中诉讼已出判决结果', prop: 'adjudicatedAmt', attrs: { width: 'auto' }, isMoney: true, }, ] export default options => { // 接口地址,required const api = 'overdueReport/queryOrgOverdueAmtSummaryList' return new ApiModel({ api, tableList, request(params) { return this.post(params) } }) }