Commit fda12eb3 authored by 阮藤's avatar 阮藤

列表相关显示问题解决

parent 38e24819
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
<view class="">全部订单:共{{ total }}单</view> <view class="">全部订单:共{{ total }}单</view>
<view class="">截止日期:{{ dateTime }}</view> <view class="">截止日期:{{ dateTime }}</view>
</view> </view>
<view v-if="!isEmpty" class="bg-fff color_FA5353 hs-weight-700 u-flex u-row-between u-p-t-24 u-p-b-24 u-p-l-30 u-p-r-30"> <view v-if="!isEmpty && currentTab == 0" class="bg-fff color_FA5353 hs-weight-700 u-flex u-row-between u-p-t-24 u-p-b-24 u-p-l-30 u-p-r-30">
<view @click="change(5)">有订单超时未完成,请前往操作</view> <view @click="change(5)">有订单超时未完成,请前往操作</view>
</view> </view>
<!-- list --> <!-- list -->
...@@ -295,16 +295,16 @@ export default { ...@@ -295,16 +295,16 @@ export default {
this.overtimeOrderNum = data.overtimeOrderNum; // 超时订单 this.overtimeOrderNum = data.overtimeOrderNum; // 超时订单
this.quantityNum = data.quantityToBeConfirmed; // 待确认数量 this.quantityNum = data.quantityToBeConfirmed; // 待确认数量
this.loadStatus = this.entrustmentList.length < this.total ? 'loadmore' : 'nomore'; this.loadStatus = this.entrustmentList.length < this.total ? 'loadmore' : 'nomore';
this.$refs.uToast.show({ // this.$refs.uToast.show({
title: '操作成功' // title: '操作成功'
}); // });
} }
uni.stopPullDownRefresh(); uni.stopPullDownRefresh();
}) })
.catch(err => { .catch(err => {
this.$refs.uToast.show({ // this.$refs.uToast.show({
title: '操作失败' // title: '操作失败'
}); // });
uni.stopPullDownRefresh(); uni.stopPullDownRefresh();
}); });
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment