diff --git a/package2/partTimeJob/workerOrderList.vue b/package2/partTimeJob/workerOrderList.vue index 45cde3c..c65a7cc 100644 --- a/package2/partTimeJob/workerOrderList.vue +++ b/package2/partTimeJob/workerOrderList.vue @@ -350,7 +350,7 @@ }, goDetail(item) { uni.navigateTo({ - url: '/package2/shop/orderDetail?id=' + item.orderId + url: '/package2/shop/orderDetail?type=work&id=' + item.orderId }) }, handleStatusClick(index) { diff --git a/package2/shop/orderDetail.vue b/package2/shop/orderDetail.vue index 406a0a0..3cf7213 100644 --- a/package2/shop/orderDetail.vue +++ b/package2/shop/orderDetail.vue @@ -123,7 +123,7 @@ ¥{{formatAmount(data.totalAmount)}} - + 平台服务费 @@ -200,7 +200,7 @@ - + 商家预计收入 ¥{{formatMoney(data.incomeSummary.expectedIncome)}} @@ -359,7 +359,7 @@ - + 预计收入 @@ -411,6 +411,7 @@ export default { data() { return { + Ptype:'', menuButtonInfo: {}, data:{}, mealServingLoading: false @@ -458,6 +459,7 @@ this.menuButtonInfo = uni.getMenuButtonBoundingClientRect() }, onLoad(option) { + this.Ptype = option.type this.shopId = option.id this.getDetail() },