浏览代码

fix: maybe

zouooh 1 年之前
父节点
当前提交
d13fdb4d16

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

@@ -267,12 +267,20 @@ export default {
267
       },
267
       },
268
       columns4: [
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
           label: '报警时间',
286
           label: '报警时间',

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

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

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

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

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

@@ -106,7 +106,7 @@ export default {
106
     getTableData() {
106
     getTableData() {
107
       this.loading = true
107
       this.loading = true
108
       const {pageNum, pageSize} = this
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
         this.tableData = res.data.records || []
110
         this.tableData = res.data.records || []
111
         this.total = res.data.total
111
         this.total = res.data.total
112
         this.loading = false
112
         this.loading = false