From 15a188aa852249f4a9fb6803f9d8ecde61390a84 Mon Sep 17 00:00:00 2001 From: hunlongyu Date: Wed, 15 Jul 2020 17:38:00 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=8D=20=E4=BC=98=E5=8C=96=20MINI=20?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F=20=F0=9F=8E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mini/Mini.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mini/Mini.vue b/src/mini/Mini.vue index b988d24..c8778a0 100644 --- a/src/mini/Mini.vue +++ b/src/mini/Mini.vue @@ -177,6 +177,7 @@ export default { }, prevEvent () { if (this.video.index === 0) { + this.$message.info('已是第一集.') return false } history.find({ site: this.video.site, ids: this.video.ids }).then(res => { @@ -192,6 +193,7 @@ export default { }, nextEvent () { if (this.video.index >= this.m3u8Arr.length - 1) { + this.$message.info('已是最后一集.') return false } history.find({ site: this.video.site, ids: this.video.ids }).then(res => {