diff --git a/pages_order/sharing/video.vue b/pages_order/sharing/video.vue index fe105fa..a1a922b 100644 --- a/pages_order/sharing/video.vue +++ b/pages_order/sharing/video.vue @@ -121,13 +121,7 @@ } }, async initData() { - this.fetchCheckShare().then(result => { - const { open } = result - - console.log('--open', open) - - this.isLocked = !open - }) + this.isLocked = true await this.fetchDetails(this.id) this.videoContext = uni.createVideoContext('video'); @@ -139,52 +133,19 @@ return {} } }, - async refreshLockStatus() { - - const result = await this.fetchCheckShare() - const { title, open } = result - - console.log('--open', open) - - this.$refs.popupUnlock.close(); - - if (open) { - this.isLocked = false - this.timeIsUp = false - this.videoContext.play() - return - } - - title && uni.showToast({ - title, - icon: 'none' - }) - + refreshLockStatus() { + this.isLocked = false + this.timeIsUp = false + this.videoContext.play() }, async onPlay() { if (!this.isLocked) { return } - - const result = await this.fetchCheckShare() - const { open, need_num, num } = result - - console.log('--open', open) - - if (open) { // 转发已达标 - this.isLocked = false - this.timeIsUp = false - this.videoContext.play() - console.log('--play') - } else { - this.videoContext.pause() - this.timeIsUp = true - uni.showToast({ - title: `还需转发${need_num - num}次`, - icon: 'none', - }) - this.$refs.popupUnlock.open(); - } + + this.videoContext.pause() + this.timeIsUp = true + this.$refs.popupUnlock.open(); }, async onTimeupdate(e) { const { currentTime } = e.target