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(); +});