From 51e19b3266bd952bb90610a126e276fd7bc40772 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Fri, 14 Nov 2025 10:24:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=B8=8B=E6=8B=89=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E6=9B=B4=E5=A4=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/verify/list/index.vue | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pages/verify/list/index.vue b/pages/verify/list/index.vue index aedfc9c..df67089 100644 --- a/pages/verify/list/index.vue +++ b/pages/verify/list/index.vue @@ -82,7 +82,7 @@ - + @@ -95,15 +95,15 @@ - {{ item.createRemark }} + 备注:{{ item.createRemark }} 创建时间: {{ item.createTime || '—' }} - - 申请人: - {{ item.createName || '—' }} - + + + + @@ -185,7 +185,7 @@ import { ref, computed, onMounted } from 'vue'; import { getVerifyList } from '@/api'; import { usePagination } from '@/composables'; - +import { onReachBottom } from '@dcloudio/uni-app' const bstType = ref(''); const filterStatus = ref(''); const dateRange = ref([]); // [startDate, endDate] 格式: yyyy-MM-dd @@ -380,6 +380,10 @@ onMounted(() => { } getList(true); }); + +onReachBottom(()=>{ + loadMore(); +});