/* * @Author: Pengjiantian * @Date: 2020-06-24 15:07:26 * @Last Modified by: Pengjiantian * @Last Modified time: 2020-06-24 15:19:01 */ import ApiModel from '@/utils/core/apiModel' // 贷款机构 - 审核流程流转记录 const tableList = [ { label: '阶段名称', prop: 'phaseName' }, { label: '审批意见', prop: 'phaseOpinion', attrs: { width: '400' } }, { label: '处理人', prop: 'inputUserName', attrs: { width: '200' } }, { label: '处理人直属机构', prop: 'inputOrgName', attrs: { width: '200' } }, { label: '任务接收时间', prop: 'beginTime' }, { label: '任务完成时间', prop: 'endTime' }, { label: '处理耗时', prop: 'processingTime' } ] export default options => { // 接口地址: required const api = 'server/queryFlowTaskInfoCommom' return new ApiModel({ api, tableList, request(body) { return this.post(body) } }) }