From 4b2caff8cd7290c59245e4b2f4475a40161fa056 Mon Sep 17 00:00:00 2001 From: douzhuo <17611323298@163.com> Date: Fri, 6 May 2022 18:27:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/center/prohibited/details.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/center/prohibited/details.vue b/pages/center/prohibited/details.vue index 5cbed36..7bff8a3 100644 --- a/pages/center/prohibited/details.vue +++ b/pages/center/prohibited/details.vue @@ -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) } },