去掉防抖

This commit is contained in:
shijingjing
2022-08-02 10:37:07 +08:00
parent facd4595cc
commit 03bd28eff7

View File

@@ -123,7 +123,6 @@ export default {
current: 1,
firstClickTime: "",
currentClickTime: "",
flag: false,
detail: {},
subsection0: [
@@ -199,7 +198,6 @@ export default {
},
// 提醒发送
remindSend() {
if(this.flag) return
this.firstClickTime = new Date(this.detail.remindTime).getTime() || "";
this.currentClickTime = +new Date();
let time = this.currentClickTime - this.firstClickTime;
@@ -212,7 +210,6 @@ export default {
.then((res) => {
if (res?.code == 0) {
this.$u.toast("已提醒成员发送");
this.flag = true;
this.getDetail()
}
})