|
@@ -14,6 +14,11 @@
|
14
|
14
|
<el-option v-for="item in carOptions" :key="item.parkId" :label="item.carParkName" :value="item.parkId"></el-option>
|
15
|
15
|
</el-select>
|
16
|
16
|
</el-form-item>
|
|
17
|
+ <el-form-item label="设备类型">
|
|
18
|
+ <el-select clearable filterable v-model="formInline1.deviceType" placeholder="请选择" popper-class="cur-select">
|
|
19
|
+ <el-option v-for="item in deviceOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
|
20
|
+ </el-select>
|
|
21
|
+ </el-form-item>
|
17
|
22
|
<el-form-item>
|
18
|
23
|
<el-button type="primary" @click="queryTable">查询</el-button>
|
19
|
24
|
</el-form-item>
|
|
@@ -49,7 +54,7 @@
|
49
|
54
|
<br>
|
50
|
55
|
<div style="width: 100%;display: flex;justify-content: space-between;">
|
51
|
56
|
<div style="width: 33%;height: 400px;">
|
52
|
|
- <h5 style="color: white">摄像头</h5>
|
|
57
|
+ <h5 style="color: white">高杆相机</h5>
|
53
|
58
|
<piechart
|
54
|
59
|
class="model-pie-body"
|
55
|
60
|
id="chart1"
|
|
@@ -63,7 +68,7 @@
|
63
|
68
|
</div>
|
64
|
69
|
|
65
|
70
|
<div style="width: 33%;height: 400px;">
|
66
|
|
- <h5 style="color: white">闸机</h5>
|
|
71
|
+ <h5 style="color: white">PDA</h5>
|
67
|
72
|
<piechart
|
68
|
73
|
class="model-pie-body"
|
69
|
74
|
id="chart2"
|
|
@@ -77,7 +82,7 @@
|
77
|
82
|
</div>
|
78
|
83
|
|
79
|
84
|
<div style="width: 33%;height: 400px;">
|
80
|
|
- <h5 style="color: white">满位显示器</h5>
|
|
85
|
+ <h5 style="color: white">地磁</h5>
|
81
|
86
|
<piechart
|
82
|
87
|
class="model-pie-body"
|
83
|
88
|
id="chart3"
|
|
@@ -107,6 +112,7 @@ export default {
|
107
|
112
|
data() {
|
108
|
113
|
return {
|
109
|
114
|
districtOptions: options.districtOptions,
|
|
115
|
+ deviceOptions: options.deviceOptions,
|
110
|
116
|
carOptions: [],
|
111
|
117
|
columns: [
|
112
|
118
|
{
|