confirmrefund.wxml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!--pages/confirmrefund/confirmrefund.wxml-->
  2. <nav-bar navbar-data="{{navbarData}}"></nav-bar>
  3. <view class="content">
  4. <!-- 步骤条 -->
  5. <view class="steps">
  6. <view class="info">
  7. <view class="one">
  8. <view class="one-1"></view>
  9. <view class="one-2"></view>
  10. <view class="one-3"></view>
  11. </view>
  12. <view class="body1">
  13. <p>申请退款</p>
  14. <p>等待商家处理</p>
  15. </view>
  16. </view>
  17. <view class="foot1">
  18. <p>{{billdata.apply_refund_time}}</p>
  19. <view>
  20. <view class="gray-button" catchtap="cheXiaoApply">
  21. <p>撤销申请</p>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <!-- 商品列表 -->
  27. <view class="good">
  28. <view class="good-top">
  29. <text class="good-top-title">退款商品</text>
  30. <text class="good-top-count">共{{billdata.commodity_list.length}}件</text>
  31. </view>
  32. <view class="good-card" wx:for="{{billdata.commodity_list}}">
  33. <van-image width="128rpx" height="128rpx" radius="13.5" src="{{item.commodity_img}}" />
  34. <view class="good-info">
  35. <view class="good-info-top">
  36. <view class="good-title">
  37. <text>{{item.commodity_name}}</text>
  38. </view>
  39. <view class="good-original-price">
  40. <text>C$ {{item.commodity_price}}</text>
  41. </view>
  42. <view class="good-current-price">
  43. <text>C$ {{item.commodity_price}}</text>
  44. </view>
  45. </view>
  46. <view class="good-info-bottom">
  47. <text style="font-size: 28rpx;color: #989898;">x {{item.commodity_number}}</text>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <!-- 按钮组 -->
  53. <view class="button-group">
  54. <button catchtap="callHead">
  55. <text class="iconfont icon-dianhua"></text>
  56. <text>联系团长</text>
  57. </button>
  58. <button>
  59. <text>平台咨询</text>
  60. </button>
  61. <button catchtap="modifyApply">
  62. <text>修改申请</text>
  63. </button>
  64. </view>
  65. <!-- 退款金额 -->
  66. <view class="refund-amount">
  67. <group-title title="退款金额"></group-title>
  68. <text>C${{billdata.payment_amount}}</text>
  69. </view>
  70. <!-- 退款信息 -->
  71. <view class="order">
  72. <group-title title="退款信息"></group-title>
  73. <view class="order-card">
  74. <view class="order-card-row">
  75. <text class="left">退款原因</text>
  76. <text class="right">{{billdata.refund_reason}}</text>
  77. </view>
  78. <view class="order-card-row" style="margin-top: 18rpx;">
  79. <text class="left">订单编号</text>
  80. <text class="right">{{billdata.refund_number}}</text>
  81. <view class="button" catchtap="copy">复制</view>
  82. </view>
  83. </view>
  84. </view>
  85. <view class="foot">
  86. <text>您申请的退款拼团已截团,申请后不会原路径返回,需要联系商家私下退款</text>
  87. </view>
  88. </view>
  89. <van-popup show="{{ show }}" round bind:close="onClose">
  90. <view class="popup">
  91. <!-- 退款原因 -->
  92. <view class="reason">
  93. <view class="reason-top">
  94. <text class="reason-top-title">退款原因</text>
  95. </view>
  96. <view class="reason-content">
  97. <textarea bindinput="inputReason" value="{{refund_reason}}"></textarea>
  98. </view>
  99. <view class="reason-top">
  100. <text class="reason-top-title">退款凭证</text>
  101. </view>
  102. <view class="reason-upload">
  103. <image wx:if="{{refund_voucher}}" src="{{refund_voucher}}" class="upload-img"></image>
  104. <view class="reason-upload-view" style="{{refund_voucher != '' ? 'margin-left: 20rpx' : ''}}" catchtap="uploadVoucher">
  105. <image src="/images/add.png"></image>
  106. </view>
  107. </view>
  108. <button class="reason-button" catchtap="confirmModify">确认修改</button>
  109. </view>
  110. </view>
  111. </van-popup>