|
|
@ -123,7 +123,7 @@ |
|
|
¥{{formatAmount(data.totalAmount)}} |
|
|
¥{{formatAmount(data.totalAmount)}} |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view style="display: flex;height: 60rpx;line-height: 60rpx;"> |
|
|
<view v-if="Ptype != 'work'" style="display: flex;height: 60rpx;line-height: 60rpx;"> |
|
|
<view style="flex: 1;"> |
|
|
<view style="flex: 1;"> |
|
|
平台服务费 |
|
|
平台服务费 |
|
|
</view> |
|
|
</view> |
|
|
@ -200,7 +200,7 @@ |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="box1 income-card" v-if="data.incomeSummary && data.incomeSummary.show"> |
|
|
<view class="box1 income-card" v-if="data.incomeSummary && data.incomeSummary.show && Ptype !='work'"> |
|
|
<view class="income-title"> |
|
|
<view class="income-title"> |
|
|
<text>商家预计收入</text> |
|
|
<text>商家预计收入</text> |
|
|
<text class="income-total">¥{{formatMoney(data.incomeSummary.expectedIncome)}}</text> |
|
|
<text class="income-total">¥{{formatMoney(data.incomeSummary.expectedIncome)}}</text> |
|
|
@ -359,7 +359,7 @@ |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="bottom"> |
|
|
<view class="bottom"> |
|
|
<view v-if="data.status != 6 && data.status != 8" style="height: 66rpx;line-height: 66rpx;display: flex;border-bottom: 1px solid #eee;font-size: 33rpx;"> |
|
|
<view v-if="data.status != 6 && data.status != 8 && Ptype != 'work'" style="height: 66rpx;line-height: 66rpx;display: flex;border-bottom: 1px solid #eee;font-size: 33rpx;"> |
|
|
<view style="flex: 1;"> |
|
|
<view style="flex: 1;"> |
|
|
预计收入 |
|
|
预计收入 |
|
|
</view> |
|
|
</view> |
|
|
@ -411,6 +411,7 @@ |
|
|
export default { |
|
|
export default { |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
Ptype:'', |
|
|
menuButtonInfo: {}, |
|
|
menuButtonInfo: {}, |
|
|
data:{}, |
|
|
data:{}, |
|
|
mealServingLoading: false |
|
|
mealServingLoading: false |
|
|
@ -458,6 +459,7 @@ |
|
|
this.menuButtonInfo = uni.getMenuButtonBoundingClientRect() |
|
|
this.menuButtonInfo = uni.getMenuButtonBoundingClientRect() |
|
|
}, |
|
|
}, |
|
|
onLoad(option) { |
|
|
onLoad(option) { |
|
|
|
|
|
this.Ptype = option.type |
|
|
this.shopId = option.id |
|
|
this.shopId = option.id |
|
|
this.getDetail() |
|
|
this.getDetail() |
|
|
}, |
|
|
}, |
|
|
|