Ver Fonte

去掉提示

natasha há 1 ano atrás
pai
commit
b1b89c5125

+ 2 - 2
src/components/Adult/preview/Voicefullscreen-ly.vue

@@ -2236,7 +2236,7 @@ export default {
         return;
       }
       if (this.curSentIndex == 0) {
-        this.$message.warning("已经是第一个句子了");
+        // this.$message.warning("已经是第一个句子了");
         return;
       }
       this.curSentIndex = this.curSentIndex - 1;
@@ -2252,7 +2252,7 @@ export default {
         return;
       }
       if (this.curSentIndex == this.sentList.length - 1) {
-        this.$message.warning("已经是最后一个句子了");
+        // this.$message.warning("已经是最后一个句子了");
         return;
       }
       this.curSentIndex = this.curSentIndex + 1;

+ 2 - 2
src/components/Adult/preview/Voicefullscreen.vue

@@ -1013,7 +1013,7 @@ export default {
     prevSentence() {
       let _this = this;
       if (_this.curSentIndex == 0) {
-        _this.$message.warning("已经是第一个句子了");
+        // _this.$message.warning("已经是第一个句子了");
         return;
       }
       _this.curSentIndex = _this.curSentIndex - 1;
@@ -1025,7 +1025,7 @@ export default {
     },
     nextSentence() {
       if (this.curSentIndex == this.sentList.length - 1) {
-        this.$message.warning("已经是最后一个句子了");
+        // this.$message.warning("已经是最后一个句子了");
         return;
       }
       this.curSentIndex = this.curSentIndex + 1;