派生自 wuyushui/SewerAndRainNetwork

XingChuan
2021-05-30 2d5e75bbc04d8c4c5c7dc6bb141ad16ffa2d9936
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
export default {
  id: 3,
  name: '应急资源',
  child: [
    {
      name: '应急车辆',
      column: [{
        label: '序号',
        prop: 'no',
        width: 'auto'
      },
      {
        label: '名称',
        prop: 'name',
        width: 'auto'
      }
      ]
    },
    {
      name: '应急物资',
      column: [{
        label: '序号',
        prop: 'no',
        width: 'auto'
      },
      {
        label: '名称',
        prop: 'name',
        width: 'auto'
      },
      {
        label: '单位名称',
        prop: 'companyname',
        width: 'auto'
      },
      {
        label: '物资名称',
        prop: 'resourcesname',
        width: 'auto'
      },
      {
        label: '联系电话',
        prop: 'telephone',
        width: 'auto'
      },
      {
        label: '物资数量',
        prop: 'resourcesnumber',
        width: 'auto'
      },
      {
        label: '是否自有物资',
        prop: 'ownedstatus',
        width: 'auto'
      },
      {
        label: '负责人',
        prop: 'resperson',
        width: 'auto'
      },
      {
        label: '行政隶属',
        prop: 'adminzonename',
        width: 'auto'
      }
      ]
    },
    {
      name: '应急队伍',
      column: [{
        label: '序号',
        prop: 'no',
        width: 'auto'
      },
      {
        label: '队伍名称',
        prop: 'teamname',
        width: 'auto'
      },
      {
        label: '应急电话',
        prop: 'phone',
        width: 'auto'
      },
      {
        label: '人员数量',
        prop: 'organization',
        width: 'auto'
      },
      {
        label: '是否外协单位',
        prop: 'externalteam',
        width: 'auto'
      },
      {
        label: '行政隶属',
        prop: 'administrativesubordinate',
        width: 'auto'
      },
      {
        label: '地址',
        prop: 'address',
        width: 'auto'
      },
      {
        label: '所属单位名称',
        prop: 'unitname',
        width: 'auto'
      },
      {
        label: '距离',
        prop: 'distance',
        width: 'auto'
      }
      ]
    }
  ]
}