From 0b1faf7e2bfa6eaafedf43d9603998aafa446cef Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Tue, 5 Dec 2023 09:04:56 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E4=B8=AD=E5=BF=83bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/search/AdvancedSearch.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/views/dashboard/search/AdvancedSearch.vue b/src/views/dashboard/search/AdvancedSearch.vue index 6f7dcd56..f3a84d2b 100644 --- a/src/views/dashboard/search/AdvancedSearch.vue +++ b/src/views/dashboard/search/AdvancedSearch.vue @@ -297,6 +297,17 @@ export default { this.currStandardType = value this.queryParam = {} this.dataSource = [] + this.ipagination = { + current: 1, + pageSize: 10, + pageSizeOptions: ['10', '20', '30'], + showTotal: (total, range) => { + return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') + }, + showQuickJumper: true, + showSizeChanger: true, + total: 0 + } }, onChange (item) { if (this.queryParam[item] && this.queryParam[item].length > 0) {