Browse Source

优化空调控制,诊断按钮

develop
wangsixiang 2 weeks ago
parent
commit
b57a2f7286
  1. 10
      ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/IntegratedCabinet/components/AirConditioning.vue
  2. 9
      ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/smart/abnormal/index.vue

10
ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/IntegratedCabinet/components/AirConditioning.vue

@ -137,14 +137,16 @@
data: { data: {
openingPoint:this.openingPoint, openingPoint:this.openingPoint,
controlObject:this.controlObject, controlObject:this.controlObject,
}, }
}).then(result => { }).then(result => {
if (result.code != 200) { if (result.code != 200) {
return Message.error("操作失败"); return Message.error("操作失败");
} }
Message.success("操作成功"); this.$message({
type: "success",
message: "操作成功",
});
}).catch(error => { }).catch(error => {
Message.error("请求失败,请稍后再试"); Message.error("请求失败,请稍后再试");
}); });
}, },

9
ruoyi-ui/src/views/JiHeExpressway/pages/maintenanceOperations/smart/abnormal/index.vue

@ -63,6 +63,7 @@
type="text" type="text"
v-if="scope.row.status === '0'" v-if="scope.row.status === '0'"
style="color: #00d1ff" style="color: #00d1ff"
:disabled="isDiagnosing"
@click="diagnosis(scope.row)" @click="diagnosis(scope.row)"
>诊断</ElButton >诊断</ElButton
> >
@ -119,6 +120,7 @@ export default {
}, },
data() { data() {
return { return {
isDiagnosing: false,
WarningType:{ WarningType:{
1: '交通流预警', 1: '交通流预警',
2: '气象预警' 2: '气象预警'
@ -175,14 +177,16 @@ export default {
// }).this.$confirm(`:`+deviceTypeCount) // }).this.$confirm(`:`+deviceTypeCount)
// }, // },
diagnosis(row) { diagnosis(row) {
const self = this; const self = this;
this.isDiagnosing = true;
request({ request({
url: `/business/switch/deviceDiagnostics`, url: `/business/switch/deviceDiagnostics`,
method: "post", method: "post",
data: { data: {
...row, ...row,
} }
}).then((result) => { }).then((result) => {
this.isDiagnosing = false;
if (result.code != 200) { if (result.code != 200) {
return Message.error(result?.msg); return Message.error(result?.msg);
} }
@ -191,6 +195,7 @@ export default {
type: "warning" type: "warning"
}); });
}).catch((error) => { }).catch((error) => {
this.isDiagnosing = false;
console.error("请求失败:", error); console.error("请求失败:", error);
}); });
}, },

Loading…
Cancel
Save