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
| export const searchCondition = [
| {
| name: "customerName",
| label: "姓名",
| type: "input",
| value: ""
| },
| {
| name: "certId",
| label: "身份证",
| type: "input",
| value: ""
| }
| ];
|
| export const contactPhoneDefault = {
| customerName: "",
| certId: ""
| };
|
| export const contactList = [
| {
| prop: "customerName",
| label: "主借人姓名",
| width: "220"
| },
| {
| prop: "contactName",
| label: "联系人姓名",
| width: "220"
| },
| {
| prop: "relationShipDesc",
| label: "关系",
| width: "220"
| },
| {
| prop: "relationTypeDesc",
| label: "关系类型",
| width: "220"
| },
| {
| prop: "certId",
| label: "身份证",
| width: "220"
| },
| {
| prop: "additionalInfoTypeDesc",
| label: "地址",
| width: "220"
| },
| {
| prop: "additionalIntoTypeChildDesc",
| label: "地址类型",
| width: "220"
| },
| {
| prop: "resourceIdDesc",
| label: "数据来源",
| width: "250"
| }
| ];
|
|