afterSalesDetail.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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" @refund="close" />
  46. <AgreePopup :agreeShow="agreeShow" @close="close" title="请确认是否退款" />
  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 "../components/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. orderId: "",
  77. };
  78. },
  79. onLoad(options) {
  80. this.orderId = options.id;
  81. this.getOrderDetail(options.id);
  82. },
  83. methods: {
  84. refuseApplication() {
  85. this.show = true;
  86. },
  87. //关闭弹窗,确认是否退款,status有值则退款
  88. close(status, value) {
  89. console.log(value);
  90. this.show = false;
  91. this.agreeShow = false;
  92. if (status) {
  93. uni.$u.http
  94. .post(`/api/order_refund/examine`, {
  95. status,
  96. order_refund_id: this.orderInformation.goods[0].refund.id,
  97. reason: value,
  98. })
  99. .then((res) => {
  100. console.log(res);
  101. uni.showToast({
  102. title: "已同意退款",
  103. icon: "none",
  104. });
  105. this.getOrderDetail(this.orderId);
  106. });
  107. }
  108. },
  109. getOrderDetail(id) {
  110. uni.$u.http
  111. .post(`/api/order/refund_read?order_refund_id=${id}`)
  112. .then((res) => {
  113. this.orderInformation = res;
  114. });
  115. },
  116. },
  117. };
  118. </script>
  119. <style lang="scss" scoped>
  120. .page {
  121. padding: 20rpx 24rpx;
  122. position: relative;
  123. .top {
  124. background-color: #fff;
  125. border-radius: 16rpx;
  126. padding: 28rpx 20rpx;
  127. .top-title {
  128. font-size: 36rpx;
  129. color: #333;
  130. font-weight: 600;
  131. }
  132. .top-detail {
  133. font-size: 26rpx;
  134. color: #a3a3a3;
  135. margin-top: 10rpx;
  136. }
  137. }
  138. .address {
  139. background-color: #fff;
  140. border-radius: 16rpx;
  141. padding: 34rpx 24rpx 28rpx;
  142. margin-top: 24rpx;
  143. .name-phone {
  144. display: flex;
  145. align-items: center;
  146. align-items: flex-end;
  147. .phone {
  148. font-size: 26rpx;
  149. color: #666;
  150. }
  151. }
  152. .address-detail {
  153. margin-top: 20rpx;
  154. font-size: 24rpx;
  155. color: #444;
  156. }
  157. }
  158. .footer {
  159. position: fixed;
  160. bottom: 0;
  161. left: 0;
  162. width: 100%;
  163. background-color: #fff;
  164. height: 146rpx;
  165. display: flex;
  166. justify-content: flex-end;
  167. padding: 20rpx 20rpx 0 0;
  168. .btn-1 {
  169. height: 76rpx;
  170. padding: 0;
  171. margin: 0;
  172. font-size: 28rpx;
  173. color: #f83224;
  174. min-width: 188rpx;
  175. background-color: #fff;
  176. border-radius: 38rpx;
  177. border: 2rpx solid #f83224;
  178. margin-right: 20rpx;
  179. }
  180. .btn-2 {
  181. height: 76rpx;
  182. padding: 0;
  183. margin: 0;
  184. font-size: 28rpx;
  185. color: #fff;
  186. min-width: 188rpx;
  187. background-color: #f83224;
  188. border-radius: 38rpx;
  189. margin-right: 20rpx;
  190. }
  191. }
  192. }
  193. </style>