zouooh před 1 rokem
rodič
revize
d13fdb4d16

+ 12 - 4
src/pages/index/components/message_management.vue

@@ -267,12 +267,20 @@ export default {
267 267
       },
268 268
       columns4: [
269 269
         {
270
-          label: '设备报警',
271
-          key: 'alertInfo'
270
+          label: '车牌号',
271
+          key: 'plateNo'
272
+        },
273
+        {
274
+          label: '车场',
275
+          key: 'parkName'
276
+        },
277
+        {
278
+          label: '入场时间',
279
+          key: 'inDate'
272 280
         },
273 281
         {
274
-          label: '设备ID',
275
-          key: 'deviceId'
282
+          label: '报警信息',
283
+          key: 'alertInfo'
276 284
         },
277 285
         {
278 286
           label: '报警时间',

+ 8 - 0
src/pages/index/components/task_audit.vue

@@ -159,6 +159,10 @@ export default {
159 159
           label: '欠缴金额',
160 160
           key: 'arrearsAmount'
161 161
         },
162
+        {
163
+          label: '审核状态',
164
+          key: 'auditStatus'
165
+        },
162 166
       ],
163 167
       tableData1: [{parkingCardName:'昌建东外滩西南停车场',type:'实地考察',questionDescription:'部分车位存在一车多位的占用现象',creatTime:'2023-12-30'}],
164 168
       total1: 0,
@@ -184,6 +188,10 @@ export default {
184 188
           label: '欠缴金额',
185 189
           key: 'arrearsAmount'
186 190
         },
191
+        {
192
+          label: '审核状态',
193
+          key: 'auditStatus'
194
+        },
187 195
       ],
188 196
       tableData2: [{parkingCardName:'昌建东外滩西南停车场',type:'实地考察',questionDescription:'部分车位存在一车多位的占用现象',creatTime:'2023-12-30'}],
189 197
       total2: 0,

+ 8 - 0
src/pages/index/components/task_recovery.vue

@@ -217,6 +217,10 @@ export default {
217 217
           label: '欠缴金额',
218 218
           key: 'arrearsAmount'
219 219
         },
220
+        {
221
+          label: '审核状态',
222
+          key: 'auditStatus'
223
+        },
220 224
         {
221 225
           label: '追缴日期',
222 226
           key: 'recoveryTime'
@@ -271,6 +275,10 @@ export default {
271 275
           label: '欠缴金额',
272 276
           key: 'arrearsAmount'
273 277
         },
278
+        {
279
+          label: '审核状态',
280
+          key: 'auditStatus'
281
+        },
274 282
         {
275 283
           label: '追缴日期',
276 284
           key: 'recoveryTime'

+ 1 - 1
src/pages/index/components/task_report.vue

@@ -106,7 +106,7 @@ export default {
106 106
     getTableData() {
107 107
       this.loading = true
108 108
       const {pageNum, pageSize} = this
109
-      api_z.queryTaskReportByPage({current: pageNum, size: pageSize, ...this.formInline, auditStatus: '通过'}).then(res => {
109
+      api_z.queryTaskReportByPage({current: pageNum, size: pageSize, ...this.formInline}).then(res => {
110 110
         this.tableData = res.data.records || []
111 111
         this.total = res.data.total
112 112
         this.loading = false