import store from "@/store"; const OPTIONS = store.state.rlc.OPTIONSMAP; // 管控额度管理列表查询条件 export const QUOTACONTROLLISTCOND = [ { name: "quotaObjectName", label: "额度对象编号", type: "input", value: "" }, { name: "quotaProjectName", label: "额度对象名称", type: "input", value: "" }, { name: "controlStatus", label: "额度状态", type: "select", options: OPTIONS["ControlStatus"] || [], value: "" }, { name: "quotaObjectType", label: "额度对象类型", options: OPTIONS["QuotaObjectType"] || [], type: "select", value: "" }, { name: "quotaControlType", label: "额度类型", type: "select", options: OPTIONS["QuotaControlType"] || [], value: "" }, { name: "productIdArray", label: "产品", type: "multipleSelect", options: OPTIONS["products"] || [], value: "" }, { name: "cityArray", label: "城市", type: "multipleSelect", options: OPTIONS["citys"] || [], value: "" }, { name: "subCompany", label: "子公司", type: "input", value: "" }, { name: "approveStatus", label: "修改审核状态", type: "select", options: OPTIONS["ApproveStatus"] || [], value: "" } ]; // 管控额度管理列表查询form默认值 export const QUOTACONTROLLISTCONDDEF = { quotaObjectName: "", quotaProjectName: "", controlStatus: "", quotaObjectType: "", quotaControlType: "", productIdArray: "", cityArray: "", subCompany: "", approveStatus: "" };