diff --git a/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue b/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue index bb579c46..058a2126 100644 --- a/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue +++ b/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue @@ -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() } })