returnofmoney.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!--pages/returnofmoney/returnofmoney.wxml-->
  2. <nav-bar navbar-data="{{navbarData}}"></nav-bar>
  3. <view class="cont">
  4. <van-image style="margin-top: 40rpx;" round fit="cover" width="60px" height="60px " src="{{user_info.headimg}}" />
  5. <p style="margin-top: 40rpx;font-size: 32rpx;color:#464646;font-weight: 600;">{{user_info.name}}申请退款</p>
  6. <view class="body">
  7. <view>
  8. <p>退款金额</p>
  9. <p style="color:#464646;font-size:32rpx;font-weight:600;">C${{billdata.payment_amount}}</p>
  10. </view>
  11. <view>
  12. <p>拼团名称</p>
  13. <p>{{billdata.gang_name}}</p>
  14. </view>
  15. <view>
  16. <p>退款原因</p>
  17. <p>{{billdata.refund_reason}}</p>
  18. </view>
  19. <view>
  20. <p>退款编号</p>
  21. <view class="bianhao">
  22. <p style="color: #656565;font-size: 28rpx;">{{billdata.refund_number}}</p>
  23. <button class="fuzhi" bindtap="fuzhi">复制</button>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="userinfo">
  28. <view>团员信息</view>
  29. <view>
  30. <van-image round fit="cover" width="43px" height="43px " src="{{user_info.headimg}}" />
  31. <p>{{user_info.name}}</p>
  32. <button catchtap="callUser">
  33. <image src="/images/telphone.png"></image>联系团员
  34. </button>
  35. </view>
  36. </view>
  37. <view class="goods">
  38. <view class="goods-title">
  39. <p>退款商品</p>
  40. <p>共{{billdata.commodity_list.length}}件</p>
  41. </view>
  42. <view class="goods-info" wx:for="{{billdata.commodity_list}}">
  43. <van-image fit="cover" width="64px" height="64px " src="{{item.commodity_img}}" />
  44. <view class="goods-name">
  45. <p>{{item.commodity_name}}</p>
  46. <p>×{{item.commodity_number}}</p>
  47. </view>
  48. <view class="goods-price">
  49. <p>c$</p>
  50. <p>{{item.commodity_price}}</p>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <view style="height: 200rpx;"></view>
  56. <view class="foots">
  57. <button catchtap="disagree">不同意</button>
  58. <button catchtap="agree">同意</button>
  59. </view>