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
46
47
48
49
50
51
| /** 风控-白名单添加 COLUMN*/
| export const RISKWHITECOLUMN = [
| {
| prop: "customername",
| label: "客户名称",
| width: "250"
| },
| {
| prop: "certid",
| label: "身份证号",
| width: "250"
| },
| {
| prop: "productname",
| label: "产品名称",
| width: "180"
| },
| {
| prop: "starttime",
| label: "有效期开始时间",
| width: "160"
| },
| {
| prop: "endtime",
| label: "有效期结束时间",
| width: "160"
| },
| {
| prop: "statusDesc",
| label: "状态",
| width: "200"
| },
| {
| prop: "inputusername",
| label: "操作人",
| width: "120"
| },
| {
| prop: "inputdate",
| label: "操作时间",
| width: "160"
| },
| {
| prop: "operationOption",
| width: "100px",
| label: "操作管理",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
|
|