afterSalesDetail.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <view class="page">
  3. <view
  4. class="top"
  5. v-if="
  6. orderInformation.goods[0].refund.status == '0' ||
  7. orderInformation.goods[0].refund.status == '3'
  8. "
  9. >
  10. <view class="top-title"> 请处理退款申请 </view>
  11. <view class="top-detail"> 如果您同意,请点击“同意退款” </view>
  12. </view>
  13. <view
  14. class="top"
  15. v-else-if="orderInformation.goods[0].refund.status == '2'"
  16. >
  17. <view class="top-title"> 您拒绝了退款申请 </view>
  18. <view class="top-detail">
  19. 商家:{{ orderInformation.goods[0].refund.reason }}
  20. </view>
  21. </view>
  22. <view class="top" v-else>
  23. <view class="top-title"> 您同意了退款申请 </view>
  24. </view>
  25. <!-- 地址信息 -->
  26. <view class="address">
  27. <view class="name-phone">
  28. <view style="margin-right: 20rpx; font-size: 32rpx">{{
  29. orderInformation.address_name
  30. }}</view>
  31. <text class="phone">{{ orderInformation.address_mobile }}</text>
  32. </view>
  33. <view class="address-detail">
  34. {{ orderInformation.full_address }}
  35. </view>
  36. </view>
  37. <CommodityDetail
  38. :orderInformation="orderInformation"
  39. v-if="orderInformation.goods"
  40. />
  41. <ApplicationInformation
  42. :orderInformation="orderInformation"
  43. v-if="orderInformation.goods"
  44. />
  45. <RefusePopup :show="show" @close="close" />
  46. <AgreePopup :agreeShow="agreeShow" @close="close" />
  47. <view
  48. class="footer"
  49. v-if="
  50. orderInformation.goods[0].refund.status == '0' ||
  51. orderInformation.goods[0].refund.status == '3'
  52. "
  53. >
  54. <button class="btn-1" @click="refuseApplication">拒绝申请</button
  55. ><button @click="agreeShow = true" class="btn-2">同意退款</button>
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. import CommodityDetail from "./component/commodityDetail.vue";
  61. import ApplicationInformation from "./component/applicationInformation.vue";
  62. import RefusePopup from "./component/refusePopup.vue";
  63. import AgreePopup from "./component/agreePopup.vue";
  64. export default {
  65. components: {
  66. CommodityDetail,
  67. ApplicationInformation,
  68. RefusePopup,
  69. AgreePopup,
  70. },
  71. data() {
  72. return {
  73. show: false,
  74. agreeShow: false,
  75. orderInformation: {},
  76. };
  77. },
  78. onLoad(options) {
  79. this.getOrderDetail(options.id);
  80. },
  81. methods: {
  82. refuseApplication() {
  83. this.show = true;
  84. },
  85. close(value) {
  86. console.log(value);
  87. this.show = false;
  88. this.agreeShow = false;
  89. },
  90. getOrderDetail(id) {
  91. uni.$u.http
  92. .post(`/api/order/refund_read?order_refund_id=${id}`)
  93. .then((res) => {
  94. console.log(res);
  95. this.orderInformation = res;
  96. });
  97. },
  98. },
  99. };
  100. </script>
  101. <style lang="scss" scoped>
  102. .page {
  103. padding: 20rpx 24rpx;
  104. position: relative;
  105. .top {
  106. background-color: #fff;
  107. border-radius: 16rpx;
  108. padding: 28rpx 20rpx;
  109. .top-title {
  110. font-size: 36rpx;
  111. color: #333;
  112. font-weight: 600;
  113. }
  114. .top-detail {
  115. font-size: 26rpx;
  116. color: #a3a3a3;
  117. margin-top: 10rpx;
  118. }
  119. }
  120. .address {
  121. background-color: #fff;
  122. border-radius: 16rpx;
  123. padding: 34rpx 24rpx 28rpx;
  124. margin-top: 24rpx;
  125. .name-phone {
  126. display: flex;
  127. align-items: center;
  128. align-items: flex-end;
  129. .phone {
  130. font-size: 26rpx;
  131. color: #666;
  132. }
  133. }
  134. .address-detail {
  135. margin-top: 20rpx;
  136. font-size: 24rpx;
  137. color: #444;
  138. }
  139. }
  140. .footer {
  141. position: fixed;
  142. bottom: 0;
  143. left: 0;
  144. width: 100%;
  145. background-color: #fff;
  146. height: 146rpx;
  147. display: flex;
  148. justify-content: flex-end;
  149. padding: 20rpx 20rpx 0 0;
  150. .btn-1 {
  151. height: 76rpx;
  152. padding: 0;
  153. margin: 0;
  154. font-size: 28rpx;
  155. color: #f83224;
  156. min-width: 188rpx;
  157. background-color: #fff;
  158. border-radius: 38rpx;
  159. border: 2rpx solid #f83224;
  160. margin-right: 20rpx;
  161. }
  162. .btn-2 {
  163. height: 76rpx;
  164. padding: 0;
  165. margin: 0;
  166. font-size: 28rpx;
  167. color: #fff;
  168. min-width: 188rpx;
  169. background-color: #f83224;
  170. border-radius: 38rpx;
  171. margin-right: 20rpx;
  172. }
  173. }
  174. }
  175. </style>