/* * @Author: Pengjiantian * @Date: 2020-06-28 15:22:10 * @Last Modified by: Pengjiantian * @Last Modified time: 2020-06-28 15:26:10 */ /** * 兜底机构审核列表查询 */ import ApiModel from '@/utils/core/apiModel' const formList = [ { type: 'input', label: '兜底机构编码', value: '', name: 'orgCode' }, { type: 'input', label: '兜底机构名称', value: '', name: 'orgName' }, { type: 'select', label: '当前阶段', value: [], name: 'phaseNoArray', options: [], attrs: ['filterable', 'multiple', 'clearable', 'collapse-tags'] }, { type: 'select', label: '兜底机构类型', value: '', name: 'orgType', options: [], attrs: ['filterable', 'clearable', 'collapse-tags'] }, { type: 'select', label: '兜底机构状态', value: '', name: 'status', options: [], attrs: ['filterable', 'clearable', 'collapse-tags'] } ] // 表格信息 const tableList = [ { label: '申请编号', prop: 'objectNo' }, { label: '兜底机构编码', prop: 'orgCode' }, { label: '兜底机构名称', prop: 'orgName' }, { label: '兜底机构类型', prop: 'orgTypeDesc' }, { label: '当前阶段', prop: 'phaseName' }, { label: '兜底机构状态', prop: 'statusDesc' }, { label: '生效日期', prop: 'effectiveDate' }, { label: '失效日期', prop: 'diseffectiveDate' }, { label: '上次修改时间', prop: 'updateDate' }, { label: '上次修改用户', prop: 'updateUserName' }, { label: '申请人', prop: 'inputUserName' }, { label: '当前处理人', prop: 'userName' }, { label: '当前处理人直属机构', prop: 'userOrgName' }, { label: '任务接收时间', prop: 'beginTime' }, { prop: 'action', label: '操作管理', attrs: { fixed: 'right' }, type: 'buttons' } ] export default options => { // 接口地址,required const api = 'server/queryFallBackOrgManageApproveList' return new ApiModel({ api, formList, tableList, request(params) { return this.post(params) } }) }