diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/smart/door/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/smart/door/index.vue index 4ec8a1f4..fe489669 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/smart/door/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/smart/door/index.vue @@ -9,6 +9,12 @@ 刷新 + + + 查看开门设备 + { + if (result.code != 200) return Message.error(result?.msg); + result.rows.forEach(e=>{ + e.deviceTypeName = _.find(deviceTypeOptions,{value:parseInt(e.deviceType)}).label + e.warningTime = moment(e.createTime).format('YYYY-MM-DD HH:mm:ss') + }) + this.tableData = result.rows; + this.total = result.total; + }); } } }