/* * @Author: lixiong * @Date: 2019-08-21 14:35:07 * @Last Modified by: lixiong * @Last Modified time: 2019-12-10 14:44:16 */ /** * 贷后交易复核 */ import ApiModel from '@/utils/core/apiModel' // 表单信息 const formList = [ { type: 'select', label: '贷后交易名称', value: [], name: 'transCodeName', options: [], attrs: ['filterable', 'multiple', 'clearable', 'collapse-tags'] }, { type: 'input', label: '客户名称', value: '', name: 'customerName' }, { type: 'select', label: '当前流程阶段', value: ['0020'], name: 'flowPhaseArray', options: [], attrs: ['filterable', 'multiple', 'clearable', 'collapse-tags'] }, { type: 'select', label: '产品名称', value: [], name: 'productIdArray', options: [], attrs: ['filterable', 'multiple', 'clearable', 'collapse-tags'] }, { type: 'input', label: '贷款申请编号', value: '', name: 'applySerialno' } ] // 表格信息 const tableList = [ { label: '贷后申请流水号', prop: 'transSerialno' }, { label: '贷后交易名称', prop: 'transCodeName' }, { label: '客户名称', prop: 'customerName' }, { label: '当前流程阶段', prop: 'phaseName' }, { label: '产品名称', prop: 'productName' }, { label: '产品维度名称', prop: 'dimensionsName' }, { label: '贷款申请编号', prop: 'applySerialno' }, { label: '申请日期', prop: 'applyDate' }, { label: '申请时间', prop: 'applyTime' }, { label: '申请人', prop: 'inputUserName' }, { label: '申请人直属机构', prop: 'inputOrgName' }, { label: '当前处理人', prop: 'currentProcessor' }, { label: '当前处理人直属机构', prop: 'currentProcessorOrgName' }, { label: '任务接收时间', prop: 'taskAcceptTime' }, { prop: 'action', label: '操作管理', attrs: { // width: '260px', fixed: 'right' }, type: 'buttons' } ] export default options => { // 接口地址,required const api = 'server/queryTransactionApproveList' return new ApiModel({ api, formList, tableList, request(params) { return this.post(params) } }) }