Fix:4585 【旅居商城小程序】订单状态列表,待入住的交互按钮显示的是待收货商品订单的交互按钮,应改回待确认交互按钮的样式
This commit is contained in:
@@ -274,6 +274,7 @@
|
|||||||
>{{ '申请退款' }}</view>
|
>{{ '申请退款' }}</view>
|
||||||
<view
|
<view
|
||||||
class="bnt service"
|
class="bnt service"
|
||||||
|
:class="{'v12-primary-text v12-primary-border': order.isTravelGroup === 1}"
|
||||||
@click="goOrderDetails(order)"
|
@click="goOrderDetails(order)"
|
||||||
>{{ order.isTravelGroup === 0 ? '查看详情' : '查看券码' }}</view>
|
>{{ order.isTravelGroup === 0 ? '查看详情' : '查看券码' }}</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -283,7 +284,24 @@
|
|||||||
@click="goOrderDetails(order)"
|
@click="goOrderDetails(order)"
|
||||||
>立即核销</view>
|
>立即核销</view>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="parseInt(order._status._type) === 2 && order.isTickets === 0">
|
<template v-if="parseInt(order._status._type) === 2 && order.isTickets === 0 && order.isTravelGroup === 1">
|
||||||
|
<view
|
||||||
|
v-if="order.isTravelGroup === 1"
|
||||||
|
class="bnt service"
|
||||||
|
@click="editTime(order)"
|
||||||
|
>{{ '修改时间' }}</view>
|
||||||
|
<view
|
||||||
|
v-if="order.isTravelGroup === 1"
|
||||||
|
class="bnt service"
|
||||||
|
@click="applyRefund(order)"
|
||||||
|
>{{ '申请退款' }}</view>
|
||||||
|
<view
|
||||||
|
class="bnt service"
|
||||||
|
:class="{'v12-primary-text v12-primary-border': order.isTravelGroup === 1}"
|
||||||
|
@click="goOrderDetails(order)"
|
||||||
|
>{{ order.isTravelGroup === 0 ? '查看详情' : '查看券码' }}</view>
|
||||||
|
</template>
|
||||||
|
<template v-if="parseInt(order._status._type) === 2 && order.isTickets === 0 && order.isTravelGroup === 0">
|
||||||
<view
|
<view
|
||||||
v-if="order.isExtendedDelivery === 0"
|
v-if="order.isExtendedDelivery === 0"
|
||||||
class="bnt default"
|
class="bnt default"
|
||||||
|
|||||||
Reference in New Issue
Block a user