duwendi 1 yıl önce
ebeveyn
işleme
27eed34edb

+ 2 - 1
src/pages/index/components/charge_price.vue

@@ -54,6 +54,7 @@
54 54
 
55 55
       <div style="width: 55%;height: 400px;">
56 56
         <h5 style="color: white">车主缴费明细</h5>
57
+        <br>
57 58
         <el-table :data="tableData2" style="background: #2a2a2a;border-color: #333;">
58 59
           <el-table-column v-for="(item, index) in columns2" :key="index" :label="item.label" :prop="item.key">
59 60
           </el-table-column>
@@ -174,7 +175,7 @@ export default {
174 175
       pageSize: 5,
175 176
       pageNum: 1,
176 177
       total2: 0,
177
-      pageSize2: 5,
178
+      pageSize2: 10,
178 179
       pageNum2: 1
179 180
     }
180 181
   },

+ 5 - 5
src/pages/index/components/customer_complaint.vue

@@ -99,9 +99,9 @@
99 99
           <el-select v-model="formLabelAlign.comType" placeholder="请选择">
100 100
             <el-option
101 101
               v-for="item in complaintOptions"
102
-              :key="item.value"
103
-              :label="item.label"
104
-              :value="item.value">
102
+              :key="item.dictValue"
103
+              :label="item.dictKey"
104
+              :value="item.dictValue">
105 105
             </el-option>
106 106
           </el-select>
107 107
         </el-form-item>
@@ -212,8 +212,8 @@ export default {
212 212
           key: 'disposeState'
213 213
         },
214 214
         {
215
-          label: '处理时间',
216
-          key: 'disposeTime'
215
+          label: '创建时间',
216
+          key: 'createdTime'
217 217
         }
218 218
       ],
219 219
       carOptions: [],

+ 9 - 3
src/pages/index/components/equipment_running.vue

@@ -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
         {

+ 6 - 6
src/pages/index/components/event_monitoring.vue

@@ -193,16 +193,16 @@ export default {
193 193
           key: 'carParkName'
194 194
         },
195 195
         {
196
-          label: '事件类型',
197
-          key: 'eventKey'
196
+          label: '实时数',
197
+          key: 'currentNum'
198 198
         },
199 199
         {
200
-          label: '备注',
201
-          key: 'eventBiz'
200
+          label: '近日事件数',
201
+          key: 'latelyNum'
202 202
         },
203 203
         {
204
-          label: '事件时间',
205
-          key: 'eventTime'
204
+          label: '历史事件数',
205
+          key: 'historyNum'
206 206
         }
207 207
       ],
208 208
       columns2: [

+ 11 - 1
src/util/options.js

@@ -91,5 +91,15 @@ export default {
91 91
   }, {
92 92
     value: '大额欠费事件',
93 93
     label: '大额欠费事件'
94
-  }]
94
+  }],
95
+  deviceOptions: [ {
96
+    value: '高杆相机',
97
+    label: '高杆相机'
98
+  }, {
99
+    value: 'PDA',
100
+    label: 'PDA'
101
+  }, {
102
+    value: '地磁',
103
+    label: '地磁'
104
+  }],
95 105
 }