/* * @Author: Pengjiantian * @Date: 2020-02-28 10:01:11 * @Last Modified by: Pengjiantian * @Last Modified time: 2020-02-28 10:35:05 */ /** * 管控额度任务调整列表 */ import ApiModel from "@/utils/core/apiModel"; const formList = [ { type: "input", label: "申请编号", value: "", name: "applySerialNo" }, { type: "input", label: "额度对象名称", value: "", name: "quotaProjectName" }, { type: "select", label: "当前阶段", value: "", name: "phaseNoArray", options: [], attrs: ["filterable", "multiple", "clearable", "collapse-tags"] }, { type: "input", label: "额度流水号", value: "", name: "quotaSerialNo" }, { type: "input", label: "额度对象编号", value: "", name: "quotaObjectName" }, { type: 'dateRange', label: '申请日期', value: [], name: 'applyDate', names: ['applyDateBegin', 'applyDateEnd'] } ]; // 表格信息 const tableList = [ { prop: "applySerialNo", label: "申请编号" }, { prop: "quotaSerialNo", label: "额度流水号" }, { label: "额度对象类型", prop: "quotaObjectTypeDesc" }, { label: "额度对象编号", prop: "quotaObjectName" }, { label: "额度对象名称", prop: "quotaProjectName" }, { label: "额度类型", prop: "quotaControlTypeDesc" }, { label: "产品", prop: "productName" }, { label: "城市", prop: "cityDesc" }, { label: "子公司", prop: "subCompany" }, { label: "当前阶段", prop: "phaseName" }, { label: "当前处理人", prop: "operUserName" }, { label: "当前处理人直属机构", prop: "operOrgName" }, { label: "申请日期", prop: "applyDate", }, { label: "申请时间", prop: "applyTime", }, { label: "申请人", prop: "applyUserName" }, { label: "申请人直属机构", prop: "applyOrgName" }, { prop: "action", label: "操作管理", attrs: { width: '180px', fixed: "right" }, type: "buttons" } ]; export default options => { // 接口地址,required const api = "server/qryControlQuotaChangeUserList"; return new ApiModel({ api, formList, tableList, request(params) { return this.post(params); } }); };