diff --git a/src/views/system/device/detail.vue b/src/views/system/device/detail.vue index f536174..d09ef6d 100644 --- a/src/views/system/device/detail.vue +++ b/src/views/system/device/detail.vue @@ -57,10 +57,10 @@ - - - - + + + + @@ -157,11 +157,17 @@ export default { return ((expireTime - now) / 60000).toFixed(2); }, handleReset() { - resetDevice(this.deviceData.deviceId).then(res => { - if (res.code === 200) { - this.$message.success('操作成功'); - this.getDevice(); - } + this.$confirm('是否确认归零设备?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + resetDevice(this.deviceData.deviceId).then(res => { + if (res.code === 200) { + this.$message.success('操作成功'); + this.getDevice(); + } + }) }) }, handleAddElectricity() { diff --git a/src/views/system/device/index.vue b/src/views/system/device/index.vue index 030beb9..d8df603 100644 --- a/src/views/system/device/index.vue +++ b/src/views/system/device/index.vue @@ -218,7 +218,7 @@ - +