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
| // 风控-白名单添加 查询条件form配置
| export const RISKWHITE = [
| {
| name: "customername",
| label: "客户名称",
| type: "input",
| value: ""
| },
| {
| name: "certid",
| label: "证件号码",
| type: "input",
| value: ""
| },
| {
| name: "productidarray",
| label: "产品名称",
| type: "multipleSelect",
| value: []
| }
| ];
| // 风控-白名单添加 查询条件form默认值
| export const RISKWHITEDEF = {
| customername: "",
| certid: "",
| productidarray: []
| };
|
|