|
@@ -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;
|