From 1d1e327a1cbf8bd822078a9f71894f25ddcee437 Mon Sep 17 00:00:00 2001 From: queenwuli <942534046@qq.com> Date: Mon, 11 Jan 2021 10:32:49 +0800 Subject: [PATCH] gx --- hive-app/pages/workbench/orderList.vue | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 42 insertions(+), 8 deletions(-) diff --git a/hive-app/pages/workbench/orderList.vue b/hive-app/pages/workbench/orderList.vue index 27d587b..f1784c3 100644 --- a/hive-app/pages/workbench/orderList.vue +++ b/hive-app/pages/workbench/orderList.vue @@ -49,6 +49,9 @@ <text class="blue-btn small-btn" @click="cancelOrder(item.orderId)">取消订单</text> </view> </view> + <view v-if="list.length"> + <uni-load-more :status="loadStatus" color="#a5abaf"></uni-load-more> + </view> </view> </view> </view> @@ -57,10 +60,12 @@ <script> import HTabs from "@/components/liuyuno-tabs/liuyuno-tabs.vue"; import searchBar from '../../components/searchBar/index.vue'; + import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue'; export default { components: { HTabs, - searchBar + searchBar, + uniLoadMore }, data() { return { @@ -83,7 +88,9 @@ name: '欠款' }, ], - list: [] + list: [], + loadStatus: 'more', + pageNum: 1 } }, onLoad(options) { @@ -102,6 +109,17 @@ } // #endif }, + onPullDownRefresh(){ + this.reloadData(); + let timer = setTimeout(function () { + uni.startPullDownRefresh(); + clearTimeout(timer); + timer = null; + }, 800); + }, + onReachBottom(){ + this.loadList() + }, onNavigationBarButtonTap(Object){ if(Object.key === 'add'){ uni.navigateTo({ @@ -110,28 +128,44 @@ } }, methods:{ + reloadData(){ + this.list = []; + this.pageNum = 1; + this.loadStatus = 'more'; + this.loadList(); + }, loadList(){ + if(this.loadStatus!=='more'){ + return; + } this.$httpUtils.request('/api/order/findOrderList', { - pageNum: 1, - pageSize: 100, + pageNum: this.pageNum, + pageSize: 10, queryKey: this.queryKey, orderStatus: this.orderStatus }, 'POST').then((res) => { if(res.status == 200){ - this.list = res.rows; + let result = res.rows; + if(result.length < 10){ + this.loadStatus = 'noMore'; + } else { + this.pageNum ++ ; + this.loadStatus = 'more'; + } + this.list = this.list.concat(result); } }) }, search(val){ this.queryKey = val; - this.loadList(); + this.reloadData(); }, tabChange(index){ if(this.orderStatus === index){ return; } this.orderStatus = index; - this.loadList(); + this.reloadData(); }, caculateColor(status){ if(status==='待付款'){ @@ -153,7 +187,7 @@ console.log('用户点击确定'); this.$httpUtils.request('/api/order/cancelOrder/'+id).then((res) => { if(res.status == 200){ - this.loadList() + this.reloadData() } this.$toast.info(res.info); }) -- Gitblit v1.9.1