import store from "@/store"; const OPTIONS = store.state.rlc.OPTIONSMAP; // 客户白名单管理查询条件form配置 export const CUSTOMERSWHITECOND = [ { name: "customername", label: "客户名称", type: "input", value: "" }, { name: "certid", label: "证件号码", type: "input", value: "" }, { name: "productnames", label: "产品名称", type: "multipleSelect", options: [], value: "" } // { // name: "productcustomerbasename", // label: "产品客群名称", // type: "input", // value: "" // }, // { // name: "datasource", // label: "来源", // type: "select", // value: "" // } ]; // 客户白名单管理查询条件form默认值 export const CUSTOMERSWHITECONDDEF = { customername: "", certid: "", productnames: [], productcustomerbasename: "", datasource: "" };