afterSalesDetail.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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"> {{ i18n.pleaseRefund }} </view>
  11. <view class="top-detail"> {{ i18n.ifAgree }} </view>
  12. </view>
  13. <view
  14. class="top"
  15. v-else-if="orderInformation.goods[0].refund.status == '2'"
  16. >
  17. <view class="top-title"> {{ i18n.refundRequest }} </view>
  18. <view class="top-detail">
  19. {{
  20. i18n.business + ":" + orderInformation.goods[0].refund.reason || ""
  21. }}
  22. </view>
  23. </view>
  24. <view class="top" v-else>
  25. <view class="top-title"> {{ i18n.haveAgreed }} </view>
  26. </view>
  27. <!-- 地址信息 -->
  28. <view class="address">
  29. <view class="name-phone">
  30. <view style="margin-right: 20rpx; font-size: 32rpx">{{
  31. orderInformation.address_name
  32. }}</view>
  33. <text class="phone">{{ orderInformation.address_mobile }}</text>
  34. </view>
  35. <view class="address-detail">
  36. {{ orderInformation.full_address }}
  37. </view>
  38. </view>
  39. <CommodityDetail
  40. :orderInformation="orderInformation"
  41. v-if="orderInformation.goods"
  42. :language="language"
  43. />
  44. <ApplicationInformation
  45. :orderInformation="orderInformation"
  46. v-if="orderInformation.goods"
  47. :refuseImg="refuseImg"
  48. />
  49. <RefusePopup :show="show" @refund="close" @close="close" />
  50. <AgreePopup
  51. :agreeShow="agreeShow"
  52. @close="close"
  53. :title="i18n.pleaseConfirm"
  54. />
  55. <view
  56. class="footer"
  57. v-if="
  58. (orderInformation.goods[0].refund.status == '0' ||
  59. orderInformation.goods[0].refund.status == '3') &&
  60. Number(orderInformation.goods[0].refund.is_send)
  61. "
  62. >
  63. <button class="btn-1" @click="refuseApplication">
  64. {{ i18n.refuseApplication }}</button
  65. ><button @click="agreeShow = true" class="btn-2">
  66. {{ i18n.AccettareRestituzione }}
  67. </button>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. import CommodityDetail from "./component/commodityDetail.vue";
  73. import ApplicationInformation from "./component/applicationInformation.vue";
  74. import RefusePopup from "./component/refusePopup.vue";
  75. import AgreePopup from "../components/agreePopup.vue";
  76. export default {
  77. components: {
  78. CommodityDetail,
  79. ApplicationInformation,
  80. RefusePopup,
  81. AgreePopup,
  82. },
  83. data() {
  84. return {
  85. show: false,
  86. agreeShow: false,
  87. orderInformation: {},
  88. orderId: "",
  89. refuseImg: [], //申请退款图片
  90. language: this._language, //用户当前选择的语言
  91. };
  92. },
  93. onLoad(options) {
  94. this.orderId = options.id;
  95. this.getOrderDetail(options.id);
  96. },
  97. computed: {
  98. i18n() {
  99. return this.$t("index");
  100. },
  101. },
  102. methods: {
  103. refuseApplication() {
  104. this.show = true;
  105. },
  106. //关闭弹窗,确认是否退款,status有值则退款
  107. close(status, value) {
  108. this.show = false;
  109. this.agreeShow = false;
  110. if (status) {
  111. uni.$u.http
  112. .post(`/api/order_refund/examine`, {
  113. status,
  114. order_refund_id: this.orderInformation.goods[0].refund.id,
  115. reason: value,
  116. actual_refund_price: value,
  117. })
  118. .then((res) => {
  119. uni.showToast({
  120. title:
  121. status == 2 ? this.i18n.juJueRefund : this.i18n.agreeRefund,
  122. icon: "none",
  123. });
  124. this.getOrderDetail(this.orderId);
  125. });
  126. }
  127. },
  128. getOrderDetail(id) {
  129. uni.$u.http
  130. .post(`/api/order/refund_read?order_refund_id=${id}`)
  131. .then((res) => {
  132. this.orderInformation = res;
  133. this.refuseImg =
  134. this.orderInformation.goods[0].refund.images.split(",");
  135. });
  136. },
  137. },
  138. };
  139. </script>
  140. <style lang="scss" scoped>
  141. .page {
  142. padding: 20rpx 24rpx;
  143. position: relative;
  144. .top {
  145. background-color: #fff;
  146. border-radius: 16rpx;
  147. padding: 28rpx 20rpx;
  148. .top-title {
  149. font-size: 36rpx;
  150. color: #333;
  151. font-weight: 600;
  152. }
  153. .top-detail {
  154. font-size: 26rpx;
  155. color: #a3a3a3;
  156. margin-top: 10rpx;
  157. }
  158. }
  159. .address {
  160. background-color: #fff;
  161. border-radius: 16rpx;
  162. padding: 34rpx 24rpx 28rpx;
  163. margin-top: 24rpx;
  164. .name-phone {
  165. display: flex;
  166. align-items: center;
  167. align-items: flex-end;
  168. .phone {
  169. font-size: 26rpx;
  170. color: #666;
  171. }
  172. }
  173. .address-detail {
  174. margin-top: 20rpx;
  175. font-size: 24rpx;
  176. color: #444;
  177. }
  178. }
  179. .footer {
  180. position: fixed;
  181. bottom: 0;
  182. left: 0;
  183. width: 100%;
  184. background-color: #fff;
  185. height: 146rpx;
  186. display: flex;
  187. justify-content: flex-end;
  188. padding: 20rpx 20rpx 0 0;
  189. .btn-1 {
  190. height: 76rpx;
  191. padding: 0;
  192. margin: 0;
  193. font-size: 28rpx;
  194. color: #f83224;
  195. min-width: 188rpx;
  196. background-color: #fff;
  197. border-radius: 38rpx;
  198. border: 2rpx solid #f83224;
  199. margin-right: 20rpx;
  200. }
  201. .btn-2 {
  202. height: 76rpx;
  203. padding: 0;
  204. margin: 0;
  205. font-size: 28rpx;
  206. color: #fff;
  207. min-width: 188rpx;
  208. background-color: #f83224;
  209. border-radius: 38rpx;
  210. margin-right: 20rpx;
  211. }
  212. }
  213. }
  214. </style>