Browse Source

bug fixed

duwendi 1 year ago
parent
commit
27eed34edb

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

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

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

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

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

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

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

@@ -193,16 +193,16 @@ export default {
193
           key: 'carParkName'
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
       columns2: [
208
       columns2: [

+ 11 - 1
src/util/options.js

@@ -91,5 +91,15 @@ export default {
91
   }, {
91
   }, {
92
     value: '大额欠费事件',
92
     value: '大额欠费事件',
93
     label: '大额欠费事件'
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
 }