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.
|
- <!--pages/refundDetail/refundDetail.wxml-->
- <view class="content" bindtap="contentClick">
- <view class='showQrcode'>
- <view class="canvas-box">
- <view class='remain'>
- 本次消费:<text style="color: red; font-size: 50rpx;">{{item.deductionAmountStr}} 元</text>
- </view>
- <view class="cardNumber">
- 用户名: <text class="highBold">{{item.onickName}}</text>
- </view>
-
- <view class="cardNumber">
- 卡号: <text class="highBold">{{item.cardIdHide}}</text>
- </view>
-
- <view class="cardNumber">
- 订单号: <text class="highBold">{{item.orderId}}</text>
- </view>
-
- <view class="cardNumber">
- 消费时间: <text class="highBold">{{cardSend.createDate}}</text>
- </view>
-
- <view wx:if="{{refund && item.refundStatus != 0}}" class="cardNumber">
- 申请时间: <text class="highBold">{{refund.createTime}}</text>
- </view>
-
- <view wx:if="{{item.refundStatus == 3}}" class="cardNumber">
- 驳回原因: <text class="highBold">{{cardSend.refundRemark}}</text>
- </view>
-
- <view class="fee">
- <text wx:if="{{item.refundStatus == 3}}">再次申请退款金额:</text>
- <text wx:if="{{item.refundStatus != 3}}">本次退款金额:</text>
- <text wx:if="{{item.payStatus != 0 && refund.refundFee}}" class="highBold" style="color:#ff0000;">{{refund.refundFee / 100}} 元</text>
- </view>
-
- <!-- 当无退款申请与退款失败时 -->
- <view wx:if="{{item.payStatus == 0 || item.refundStatus == 3}}" class="inputBox">
- <text style="margin-right: 25rpx;">金额</text>
- <text class="line">|</text>
- <input type="text" placeholder="请输入金额" bindinput="getPayMoney" value='{{refundFee}}' placeholder-style="color:#999999;" focus="true" />
- <text class="unit">元</text>
- </view>
- </view>
-
- <view wx:if="{{item.payStatus == 0 || item.refundStatus == 3}}" class='memberIds' bindtap='refundConfirm'>申请退款</view>
-
- <view wx:else class='memberIds' bindtap='back'>返回</view>
- </view>
-
- <view wx:if="{{item.payStatus == 3}}" class="tagStatus refunding">退款中</view>
- <view wx:if="{{item.payStatus == 4}}" class="tagStatus refunded">已退款</view>
- <view wx:if="{{item.refundStatus == 3}}" class="tagStatus refused">已驳回</view>
- </view>
|