You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.3 KiB

  1. <!--pages/refundDetail/refundDetail.wxml-->
  2. <view class="content" bindtap="contentClick">
  3. <view class='showQrcode'>
  4. <view class="canvas-box">
  5. <view class='remain'>
  6. 本次消费:<text style="color: red; font-size: 50rpx;">{{item.deductionAmountStr}} 元</text>
  7. </view>
  8. <view class="cardNumber">
  9. 用户名: <text class="highBold">{{item.onickName}}</text>
  10. </view>
  11. <view class="cardNumber">
  12. 卡号: <text class="highBold">{{item.cardIdHide}}</text>
  13. </view>
  14. <view class="cardNumber">
  15. 订单号: <text class="highBold">{{item.orderId}}</text>
  16. </view>
  17. <view class="cardNumber">
  18. 消费时间: <text class="highBold">{{cardSend.createDate}}</text>
  19. </view>
  20. <view wx:if="{{refund && item.refundStatus != 0}}" class="cardNumber">
  21. 申请时间: <text class="highBold">{{refund.createTime}}</text>
  22. </view>
  23. <view wx:if="{{item.refundStatus == 3}}" class="cardNumber">
  24. 驳回原因: <text class="highBold">{{cardSend.refundRemark}}</text>
  25. </view>
  26. <view class="fee">
  27. <text wx:if="{{item.refundStatus == 3}}">再次申请退款金额:</text>
  28. <text wx:if="{{item.refundStatus != 3}}">本次退款金额:</text>
  29. <text wx:if="{{item.payStatus != 0 && refund.refundFee}}" class="highBold" style="color:#ff0000;">{{refund.refundFee / 100}} 元</text>
  30. </view>
  31. <!-- 当无退款申请与退款失败时 -->
  32. <view wx:if="{{item.payStatus == 0 || item.refundStatus == 3}}" class="inputBox">
  33. <text style="margin-right: 25rpx;">金额</text>
  34. <text class="line">|</text>
  35. <input type="text" placeholder="请输入金额" bindinput="getPayMoney" value='{{refundFee}}' placeholder-style="color:#999999;" focus="true" />
  36. <text class="unit">元</text>
  37. </view>
  38. </view>
  39. <view wx:if="{{item.payStatus == 0 || item.refundStatus == 3}}" class='memberIds' bindtap='refundConfirm'>申请退款</view>
  40. <view wx:else class='memberIds' bindtap='back'>返回</view>
  41. </view>
  42. <view wx:if="{{item.payStatus == 3}}" class="tagStatus refunding">退款中</view>
  43. <view wx:if="{{item.payStatus == 4}}" class="tagStatus refunded">已退款</view>
  44. <view wx:if="{{item.refundStatus == 3}}" class="tagStatus refused">已驳回</view>
  45. </view>