From 6b31092156a10b808e8f27c00644850b7e900395 Mon Sep 17 00:00:00 2001
From: ZZJ <10913410+zzj2100@user.noreply.gitee.com>
Date: 星期三, 08 六月 2022 16:46:51 +0800
Subject: [PATCH] 添加联动场景参数
---
src/views/equipmentManagement/equipmentDetail/components/UnbindBox.vue | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/views/equipmentManagement/equipmentDetail/components/UnbindBox.vue b/src/views/equipmentManagement/equipmentDetail/components/UnbindBox.vue
index 9cee935..79ed391 100644
--- a/src/views/equipmentManagement/equipmentDetail/components/UnbindBox.vue
+++ b/src/views/equipmentManagement/equipmentDetail/components/UnbindBox.vue
@@ -33,9 +33,10 @@
let res = {};
try {
res = await unbind({
- ids: [this.id],
+ id: this.id,
password: this.password,
username: JSON.parse(sessionStorage.getItem("userInfo")).username,
+ userId: JSON.parse(sessionStorage.getItem("userInfo")).id,
});
} catch (err) {
this.$notify({
@@ -52,7 +53,7 @@
duration: 2500,
offset: 57,
});
- this.$emit("close");
+ this.$emit("reflash");
} else {
this.$notify({
type: "error",
@@ -141,7 +142,7 @@
position: absolute;
top: 10px;
right: 10px;
- font-size: 12px;
+ font-size: 1px;
color: 187, 187, 187;
cursor: pointer;
}
--
Gitblit v1.8.0