refundCard.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <template>
  2. <view class="detail">
  3. <view class="title">
  4. <view class="title-left">
  5. <image class="header-img" :src="itemInfo.image" mode=""></image>
  6. <text>{{ itemInfo.merchant_name }}</text>
  7. <image
  8. class="right-325"
  9. src="../../../static/mine/325.png"
  10. mode=""
  11. ></image>
  12. </view>
  13. <text
  14. class="order-status"
  15. v-if="itemInfo.order_goods[0].refund.status == 0"
  16. >{{ i18n.orderRefunding }}</text
  17. >
  18. <text
  19. class="order-status"
  20. v-if="itemInfo.order_goods[0].refund.status == 1"
  21. >{{ i18n.refundSuccessful }}</text
  22. >
  23. <text
  24. class="order-status"
  25. v-if="itemInfo.order_goods[0].refund.status == 2"
  26. >{{ i18n.refuseRefund }}</text
  27. >
  28. <text
  29. class="order-status"
  30. v-if="itemInfo.order_goods[0].refund.status == 3"
  31. >{{ i18n.platformIntervention }}</text
  32. >
  33. </view>
  34. <view
  35. class="commodity-information"
  36. v-for="item in itemInfo.order_goods"
  37. :key="item.id"
  38. @click.stop="$emit('toRefundDetail', item)"
  39. >
  40. <view class="commodity-1" v-if="item.refund">
  41. <image class="commodity-img" :src="item.sku_item.image" mode=""></image>
  42. <view class="information-right">
  43. <view class="commodity-2">
  44. <view class="commodity-title">
  45. {{ item.goods_name }}
  46. </view>
  47. </view>
  48. <view class="commodity-3">
  49. <view class="specifications"> {{ item.sku_item.item }} </view>
  50. </view>
  51. <view
  52. style="
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. "
  57. >
  58. <view
  59. class="commodity-price"
  60. v-if="item.refund.actual_refund_price"
  61. >
  62. <text style="color: #222; font-size: 26rpx">{{
  63. i18n.orderRefund
  64. }}</text>
  65. <text style="font-size: 20rpx">¥</text>
  66. <text>{{ item.refund.actual_refund_price.split(".")[0] }}</text
  67. >.
  68. <text style="font-size: 20rpx">{{
  69. item.refund.actual_refund_price.split(".")[1]
  70. }}</text>
  71. </view>
  72. <view class="commodity-price" v-else>
  73. <text style="color: #222; font-size: 26rpx">{{
  74. i18n.orderRefund
  75. }}</text>
  76. <text style="font-size: 20rpx">¥</text>
  77. <text>{{ item.refund.refund_price.split(".")[0] }}</text
  78. >.
  79. <text style="font-size: 20rpx">{{
  80. item.refund.refund_price.split(".")[1]
  81. }}</text>
  82. </view>
  83. <view class="btn-list">
  84. <button
  85. class="status-1"
  86. v-if="item.refund.status == 1"
  87. @click.stop="$emit('deleteAfterOrder', item)"
  88. >
  89. {{ i18n.deleteRecord }}</button
  90. ><button
  91. class="status-2"
  92. v-if="
  93. item.refund.status == 1 ||
  94. item.refund.status == 0 ||
  95. item.refund.status == 3
  96. "
  97. @click.stop="$emit('toRefundDetail', item)"
  98. >
  99. <!-- 售后详情 -->
  100. {{ i18n.afterDetails }}
  101. </button>
  102. <button
  103. class="status-2"
  104. v-if="item.refund.status == 2 || item.refund.status == 3"
  105. @click.stop="$emit('unreviewAfter', item)"
  106. >
  107. <!-- 继续申请 -->
  108. {{ i18n.ContinueApply }}
  109. </button>
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. </view>
  115. <view class="result" v-if="itemInfo.order_goods[0].refund.status == 0">
  116. <view class="result-left"> {{ i18n.applying }} </view>
  117. <view class="result-right"> {{ i18n.waitingRefund }} </view>
  118. </view>
  119. <view class="result" v-if="itemInfo.order_goods[0].refund.status == 1">
  120. <view class="result-left"> {{ i18n.refundSuccessful }} </view>
  121. <view class="result-right">
  122. {{ i18n.refundSuccessful }}¥{{
  123. itemInfo.order_goods[0].refund.actual_refund_price &&
  124. Number(itemInfo.order_goods[0].refund.actual_refund_price) != 0
  125. ? itemInfo.order_goods[0].refund.actual_refund_price
  126. : itemInfo.order_goods[0].refund.refund_price
  127. }}
  128. </view>
  129. </view>
  130. <view class="result" v-if="itemInfo.order_goods[0].refund.status == 2">
  131. <view class="result-left"> {{ i18n.refundFailed }} </view>
  132. <view class="result-right"> {{ i18n.seller }} </view>
  133. </view>
  134. </view>
  135. </template>
  136. <script>
  137. export default {
  138. props: {
  139. refundDetail: {
  140. typeof: Object,
  141. default: {},
  142. },
  143. itemInfo: {
  144. typeof: Object,
  145. default: () => {
  146. return {};
  147. },
  148. },
  149. },
  150. computed: {
  151. i18n() {
  152. return this.$t("index");
  153. },
  154. },
  155. data() {
  156. return {};
  157. },
  158. };
  159. </script>
  160. <style scoped lang="scss">
  161. .detail {
  162. padding: 28rpx 20rpx;
  163. background-color: #fff;
  164. border-radius: 16rpx;
  165. margin-top: 28rpx;
  166. .title {
  167. display: flex;
  168. justify-content: space-between;
  169. .title-left {
  170. display: flex;
  171. font-size: 32rpx;
  172. align-items: center;
  173. .header-img {
  174. width: 36rpx;
  175. height: 36rpx;
  176. border-radius: 50%;
  177. margin-right: 20rpx;
  178. }
  179. .right-325 {
  180. width: 32rpx;
  181. height: 32rpx;
  182. }
  183. }
  184. .order-status {
  185. color: #f83224;
  186. font-size: 26rpx;
  187. }
  188. }
  189. .commodity-information {
  190. margin-top: 28rpx;
  191. .information-right {
  192. width: 70%;
  193. }
  194. .commodity-1 {
  195. display: flex;
  196. .commodity-img {
  197. width: 180rpx;
  198. height: 180rpx;
  199. margin-right: 20rpx;
  200. border-radius: 10rpx;
  201. }
  202. .commodity-2 {
  203. display: flex;
  204. justify-content: space-between;
  205. .commodity-title {
  206. width: 100%;
  207. overflow: hidden;
  208. white-space: nowrap;
  209. text-overflow: ellipsis;
  210. margin-right: 38rpx;
  211. }
  212. }
  213. .commodity-3 {
  214. display: flex;
  215. justify-content: space-between;
  216. margin-top: 20rpx;
  217. color: #777;
  218. .specifications {
  219. font-size: 28rpx;
  220. color: #777;
  221. }
  222. }
  223. .commodity-price {
  224. margin-top: 40rpx;
  225. }
  226. }
  227. }
  228. .price {
  229. display: flex;
  230. justify-content: flex-end;
  231. font-size: 28rpx;
  232. align-items: flex-end;
  233. }
  234. .result {
  235. background-color: #f4f4f4;
  236. border-radius: 16rpx;
  237. height: 76rpx;
  238. display: flex;
  239. align-items: center;
  240. margin-top: 20rpx;
  241. padding-left: 24rpx;
  242. .result-left {
  243. margin-right: 32rpx;
  244. color: #222;
  245. font-size: 28rpx;
  246. }
  247. .result-right {
  248. color: #333;
  249. font-size: 28rpx;
  250. }
  251. }
  252. .btn-list {
  253. display: flex;
  254. justify-content: flex-end;
  255. margin-top: 34rpx;
  256. .status-1 {
  257. background-color: #fff;
  258. border-radius: 34rpx;
  259. margin: 0;
  260. padding: 0;
  261. font-size: 20rpx;
  262. color: #222;
  263. width: 128rpx;
  264. height: 58rpx;
  265. line-height: 58rpx;
  266. margin-right: 20rpx;
  267. border: 2rpx solid #979797;
  268. }
  269. .status-2 {
  270. background-color: #ffffff;
  271. border-radius: 34rpx;
  272. margin: 0;
  273. padding: 0;
  274. font-size: 20rpx;
  275. color: #f83224;
  276. width: 128rpx;
  277. height: 58rpx;
  278. line-height: 58rpx;
  279. border: 2rpx solid #f83224;
  280. margin-left: 10rpx;
  281. }
  282. }
  283. }
  284. </style>