|
@@ -26,13 +26,15 @@
|
|
|
<text>待付款</text>
|
|
|
</text>
|
|
|
<text class='item' :class='orderStatus==1 ? "on": ""' @click="statusClick(1)">
|
|
|
- <text>待取餐</text>
|
|
|
+ <text v-if="!orderType">待取餐</text>
|
|
|
+ <text v-else>待发货</text>
|
|
|
</text>
|
|
|
<text v-if="!orderType" class='item' :class='orderStatus==3 ? "on": ""' @click="statusClick(3)">
|
|
|
<text>待核销</text>
|
|
|
</text>
|
|
|
<text class='item' :class='orderStatus==4 ? "on": ""' @click="statusClick(4)">
|
|
|
- <text>配送中</text>
|
|
|
+ <text v-if="!orderType">配送中</text>
|
|
|
+ <text v-else>待收货</text>
|
|
|
</text>
|
|
|
<text class='item' :class='orderStatus==9 ? "on": ""' @click="statusClick(9)">
|
|
|
<text>已取消</text>
|