This commit is contained in:
parent
45f6215e2f
commit
ceff1c73d6
|
|
@ -97,7 +97,7 @@
|
|||
<text class="update-time">更新时间:{{ orderBasic.updateTime }}</text>
|
||||
<image class="refresh-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/31c6eebc-5538-4c66-9b32-24dced170a99.png" @tap="fetchOrderNum"></image>
|
||||
</view>
|
||||
<view class="header-right">更多数据 <image class="more-right-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/ee119e24-1cb2-43df-86e6-61af8e9fd0ad.png"></image></view>
|
||||
<view class="header-right" @tap="goToOrderList">更多数据 <image class="more-right-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/ee119e24-1cb2-43df-86e6-61af8e9fd0ad.png"></image></view>
|
||||
</view>
|
||||
<view class="stats-content">
|
||||
<view class="stat-item">
|
||||
|
|
@ -590,6 +590,8 @@ export default {
|
|||
});
|
||||
},
|
||||
|
||||
|
||||
|
||||
// 跳转:通知详情页
|
||||
goToNotice(msg) {
|
||||
if(msg.id) { uni.navigateTo({ url: `/pages/notice/detail?id=${msg.id}` }); }
|
||||
|
|
@ -598,6 +600,10 @@ export default {
|
|||
goToNoticeList() {
|
||||
uni.navigateTo({ url: '/pages/notice/notice_list' });
|
||||
},
|
||||
// 跳转:订单列表页
|
||||
goToOrderList() {
|
||||
uni.switchTab({ url: '/pages/order/userorder-list' });
|
||||
},
|
||||
|
||||
// 营业中 / 休息中 按钮逻辑判断
|
||||
toggleStatus() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue