|
@@ -12,7 +12,8 @@ import permission from "@/plugins/permission.plugins.js";
|
|
|
|
|
|
const controlStore = defineStore("control", {
|
|
|
state: () => ({
|
|
|
- pageFunction: [],
|
|
|
+ pageFunction: [], //被包含的功能
|
|
|
+ isClicked: false, //按钮是否被点击
|
|
|
form: {
|
|
|
linkUrl: "",
|
|
|
port: "",
|
|
@@ -21,7 +22,7 @@ const controlStore = defineStore("control", {
|
|
|
doorName: undefined,
|
|
|
},
|
|
|
modal: {
|
|
|
- show: false,
|
|
|
+ show: true,
|
|
|
},
|
|
|
picker: {
|
|
|
show: false,
|
|
@@ -241,6 +242,14 @@ const controlStore = defineStore("control", {
|
|
|
*/
|
|
|
openDoor(event) {
|
|
|
var that = this
|
|
|
+
|
|
|
+ if (this.isClicked) {
|
|
|
+ modal.msg("请勿重复点击!");
|
|
|
+ return;
|
|
|
+ } else {
|
|
|
+ this.isClicked = true;
|
|
|
+ }
|
|
|
+
|
|
|
doorApi()
|
|
|
.control({
|
|
|
domain: !getToken() ? this.form.domain : undefined, //域名
|
|
@@ -252,11 +261,17 @@ const controlStore = defineStore("control", {
|
|
|
commandValue: 1,
|
|
|
})
|
|
|
.then((item) => {
|
|
|
- console.log("开门成功");
|
|
|
+ modal.msg("开门成功");
|
|
|
+ setTimeout(() => {
|
|
|
+ this.isClicked = false;
|
|
|
+ }, 2000);
|
|
|
that.insertDoorRecord(event, "成功");
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
console.log(err);
|
|
|
+ setTimeout(() => {
|
|
|
+ this.isClicked = false;
|
|
|
+ }, 2000);
|
|
|
that.insertDoorRecord(event, "失败:" + err);
|
|
|
});
|
|
|
},
|