refundCard.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view class="detail" @click="$emit('toDetail', itemInfo)">
  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. >退款中</text
  17. >
  18. <text
  19. class="order-status"
  20. v-if="itemInfo.order_goods[0].refund.status == 1"
  21. >退款成功</text
  22. >
  23. <text
  24. class="order-status"
  25. v-if="itemInfo.order_goods[0].refund.status == 2"
  26. >拒绝退款</text
  27. >
  28. <text
  29. class="order-status"
  30. v-if="itemInfo.order_goods[0].refund.status == 3"
  31. >平台介入</text
  32. >
  33. </view>
  34. <view class="commodity-information" v-for="item in itemInfo.order_goods">
  35. <view class="commodity-1">
  36. <image class="commodity-img" :src="item.goods_image" mode=""></image>
  37. <view class="information-right">
  38. <view class="commodity-2">
  39. <view class="commodity-title">
  40. {{ item.goods_name }}
  41. </view>
  42. </view>
  43. <view class="commodity-3">
  44. <view class="specifications"> {{ item.sku_item.item }} </view>
  45. </view>
  46. <view
  47. style="
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. "
  52. >
  53. <view class="commodity-price">
  54. <text style="color: #222; font-size: 26rpx">退款</text>
  55. <text style="font-size: 20rpx">¥</text>
  56. <text>{{ item.amount.split(".")[0] }}</text
  57. >.
  58. <text style="font-size: 20rpx">{{
  59. item.amount.split(".")[1]
  60. }}</text>
  61. </view>
  62. <view class="btn-list">
  63. <button class="status-1" v-if="item.refund.status == 1">
  64. 删除记录</button
  65. ><button
  66. class="status-2"
  67. v-if="item.refund.status == 1 || item.refund.status == 0"
  68. @click="$emit('toRefundDetail', item)"
  69. >
  70. 售后详情
  71. </button>
  72. <button
  73. class="status-2"
  74. v-if="item.refund.status == 2"
  75. @click="$emit('unreviewAfter', item)"
  76. >
  77. 继续申请
  78. </button>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. <view class="result" v-if="itemInfo.order_goods[0].refund.status == 0">
  85. <view class="result-left"> 申请中 </view>
  86. <view class="result-right"> 等待卖家同意退款 </view>
  87. </view>
  88. <view class="result" v-if="itemInfo.order_goods[0].refund.status == 1">
  89. <view class="result-left"> 退款成功 </view>
  90. <view class="result-right">
  91. 退款成功¥{{ itemInfo.order_goods[0].amount }}
  92. </view>
  93. </view>
  94. <view class="result" v-if="itemInfo.order_goods[0].refund.status == 2">
  95. <view class="result-left"> 退款失败 </view>
  96. <view class="result-right"> 卖家拒绝退款 </view>
  97. </view>
  98. </view>
  99. </template>
  100. <script>
  101. export default {
  102. props: {
  103. refundDetail: {
  104. typeof: Object,
  105. default: {},
  106. },
  107. itemInfo: {
  108. typeof: Object,
  109. default: () => {
  110. return {};
  111. },
  112. },
  113. },
  114. data() {
  115. return {};
  116. },
  117. };
  118. </script>
  119. <style scoped lang="scss">
  120. .detail {
  121. padding: 28rpx 20rpx;
  122. background-color: #fff;
  123. border-radius: 16rpx;
  124. margin-top: 28rpx;
  125. .title {
  126. display: flex;
  127. justify-content: space-between;
  128. .title-left {
  129. display: flex;
  130. font-size: 32rpx;
  131. align-items: center;
  132. .header-img {
  133. width: 36rpx;
  134. height: 36rpx;
  135. border-radius: 50%;
  136. margin-right: 20rpx;
  137. }
  138. .right-325 {
  139. width: 32rpx;
  140. height: 32rpx;
  141. }
  142. }
  143. .order-status {
  144. color: #f83224;
  145. font-size: 26rpx;
  146. }
  147. }
  148. .commodity-information {
  149. margin-top: 28rpx;
  150. .information-right {
  151. width: 70%;
  152. }
  153. .commodity-1 {
  154. display: flex;
  155. .commodity-img {
  156. width: 180rpx;
  157. height: 180rpx;
  158. margin-right: 20rpx;
  159. border-radius: 10rpx;
  160. }
  161. .commodity-2 {
  162. display: flex;
  163. justify-content: space-between;
  164. .commodity-title {
  165. width: 100%;
  166. overflow: hidden;
  167. white-space: nowrap;
  168. text-overflow: ellipsis;
  169. margin-right: 38rpx;
  170. }
  171. }
  172. .commodity-3 {
  173. display: flex;
  174. justify-content: space-between;
  175. margin-top: 20rpx;
  176. color: #777;
  177. .specifications {
  178. font-size: 28rpx;
  179. color: #777;
  180. }
  181. }
  182. .commodity-price {
  183. margin-top: 40rpx;
  184. }
  185. }
  186. }
  187. .price {
  188. display: flex;
  189. justify-content: flex-end;
  190. font-size: 28rpx;
  191. align-items: flex-end;
  192. }
  193. .result {
  194. background-color: #f4f4f4;
  195. border-radius: 16rpx;
  196. height: 76rpx;
  197. display: flex;
  198. align-items: center;
  199. margin-top: 20rpx;
  200. padding-left: 24rpx;
  201. .result-left {
  202. margin-right: 32rpx;
  203. color: #222;
  204. font-size: 28rpx;
  205. }
  206. .result-right {
  207. color: #333;
  208. font-size: 28rpx;
  209. }
  210. }
  211. .btn-list {
  212. display: flex;
  213. justify-content: flex-end;
  214. margin-top: 34rpx;
  215. .status-1 {
  216. background-color: #fff;
  217. border-radius: 34rpx;
  218. margin: 0;
  219. padding: 0;
  220. font-size: 20rpx;
  221. color: #222;
  222. width: 128rpx;
  223. height: 58rpx;
  224. line-height: 58rpx;
  225. margin-right: 20rpx;
  226. border: 2rpx solid #979797;
  227. }
  228. .status-2 {
  229. background-color: #ffffff;
  230. border-radius: 34rpx;
  231. margin: 0;
  232. padding: 0;
  233. font-size: 20rpx;
  234. color: #f83224;
  235. width: 128rpx;
  236. height: 58rpx;
  237. line-height: 58rpx;
  238. border: 2rpx solid #f83224;
  239. }
  240. }
  241. }
  242. </style>