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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
| /** 客户白名单管理COLUMN*/
| export const CUSTOMERSWHITECOLUMN = [
| {
| prop: "customername",
| label: "客户名称",
| width: "150"
| },
| // {
| // prop: "certtypeCn",
| // label: "证件类型",
| // width: "150"
| // },
| {
| prop: "certid",
| label: "身份证号码",
| width: "180"
| },
| {
| prop: "phone",
| label: "手机号",
| width: "auto"
| },
| {
| prop: "productname",
| label: "产品名称",
| width: "auto"
| },
| {
| prop: "projectname",
| label: "项目名称",
| width: "auto"
| },
| {
| prop: "isDeleteCn",
| label: "状态",
| width: "auto"
| },
| {
| prop: "updatedate",
| label: "最近修改时间",
| width: "170"
| },
| // {
| // prop: "productcustomerbasename",
| // label: "产品客群名称",
| // width: "auto"
| // },
| // {
| // prop: "datasourceCn",
| // label: "来源",
| // width: "150"
| // },
| // {
| // prop: "updateuser",
| // label: "最近更新人",
| // width: "150"
| // },
| // {
| // prop: "updatedate",
| // label: "最近更新时间",
| // width: "170"
| // },
| {
| prop: "operationOption",
| width: "130px",
| label: "操作管理",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
|
|