1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| 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: ""
| };
|
|