Browse Source

提交

dev
douzhuo 2 years ago
parent
commit
4b2caff8cd
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pages/center/prohibited/details.vue

+ 2
- 2
pages/center/prohibited/details.vue View File

@@ -329,7 +329,7 @@
nextValid() {
if (this.nextPageObj.pageSize < this.nextPageObj.num) {
this.innerAudioContext.pause()
this.nextPageObj.pageSize++
this.nextPageObj.pageSize = this.nextPageObj.pageSize + 1
this.keyWordsMatching(this.nextPageObj)
} else {
uni.showToast({
@@ -347,7 +347,7 @@
})
} else {
this.innerAudioContext.pause()
this.nextPageObj.pageSize--
this.nextPageObj.pageSize = this.nextPageObj.pageSize - 1
this.keyWordsMatching(this.nextPageObj)
}
},


Loading…
Cancel
Save