zhengpz
2021-08-23 dc91db9bb3473c3ed058f86f74359e15c035a8a5
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
72
73
74
75
76
77
78
79
export var companyColimn = [
    {
        label: "公司名称",
        prop: "enterprisename",
        search: true,
        searchSpan: 4,
        // width: 300,
        minWidth: 120,
        overHidden: true,
        display: false,
    },
    {
        label: "法定代表人",
        prop: "representative",
        display: false,
        width: 86,
    },
    {
        label: "法人电话",
        prop: "representativecell",
        display: false,
        width: 95,
    },
    {
        label: "注册时间",
        prop: "establishtime",
        type: "date",
        format: "yyyy-MM-dd",
        valueFormat: "yyyy-MM-dd",
        mock: {
            type: "datetime",
            format: "yyyy-MM-dd",
        },
        search: true,
        searchSpan: 4,
        display: false,
        width: 140,
    },
    {
        label: "注册资金",
        prop: "registeredcapital",
        display: false,
        width: 110,
    },
    // {
    //     label: "实缴资金",
    //     prop: "capital",
    //     display: false,
    //     width: 110,
    // },
    // {
    //   label: "公司类型",
    //   prop: "enterprises",
    //   display: false,
    //   width: 220,
    //   overHidden: true,
    // },
 
    {
        label: "联系人",
        prop: "contacts",
        display: false,
        overHidden: true,
        width: 95,
    },
    {
        label: "联系电话",
        prop: "contactscell",
        display: false,
        overHidden: true,
        width: 95,
    },
    {
        label: "注册地址",
        prop: "address",
        display: false,
        overHidden: true,
    }
]