From a6653e19d20a61e7b8f788037d2a4df3f93a4f32 Mon Sep 17 00:00:00 2001 From: queenwuli <942534046@qq.com> Date: Tue, 12 Jan 2021 16:51:03 +0800 Subject: [PATCH] gx --- hive-app/pages/workbench/orderList.vue | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/hive-app/pages/workbench/orderList.vue b/hive-app/pages/workbench/orderList.vue index f1784c3..fa44d6c 100644 --- a/hive-app/pages/workbench/orderList.vue +++ b/hive-app/pages/workbench/orderList.vue @@ -49,6 +49,7 @@ <text class="blue-btn small-btn" @click="cancelOrder(item.orderId)">取消订单</text> </view> </view> + <no-record :isShow="!list.length" txt="暂无订单记录"></no-record> <view v-if="list.length"> <uni-load-more :status="loadStatus" color="#a5abaf"></uni-load-more> </view> @@ -69,6 +70,7 @@ }, data() { return { + queryKey: '', orderStatus: 0, tabs:[ { @@ -97,6 +99,9 @@ if(options.status){ this.orderStatus = Number(options.status); } + if(options.queryKey){ + this.queryKey = options.queryKey; + } this.loadList() // 判断权限 -- Gitblit v1.9.1