Browse Source

修改订单详情页面按钮样式

master
liutong 1 year ago
parent
commit
886ab5c918
  1. 9
      page_goods/orderDetail/orderDetail.vue

9
page_goods/orderDetail/orderDetail.vue

@ -570,23 +570,30 @@
</view>
<view class="order-action fixed-bottom bottom-safe-area" v-if="orderData.action.length > 0 || isOrderPayShow">
<view style="display: flex;flex-wrap: wrap;justify-content:flex-end;margin: 0 auto; box-sizing: border-box;gap: 25rpx;">
<view class="order-box-btn white"
style="margin: 0;"
v-if="evaluateConfig.evaluate_status == 1 && orderData.is_evaluate == 1"
@click="operation('memberOrderEvaluation')">
<text v-if="orderData.evaluate_status == 0">评价</text>
<text v-else-if="orderData.evaluate_status == 1">追评</text>
</view>
<!--是否展示自定义支付按钮-->
<view v-if="isShowRefund" class="order-box-btn"
style="margin: 0;"
:class="{ 'color-base-border color-base-text': operationItem.action == 'orderPay' }"
v-for="(operationItem, operationIndex) in orderData.action" :key="operationIndex"
@click="operation(operationItem.action)">
{{ operationItem.title }}
</view>
<!--是否展示自定义支付按钮-->
<view v-if="isOrderPayShow"
style="margin: 0;"
class="order-box-btn color-base-border color-base-text"
@click="operation('orderPay')">
支付
</view>
</view>
</view>

Loading…
Cancel
Save