refundCard.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="detail" @click="$emit('toDetail')">
  3. <view class="title">
  4. <view class="title-left">
  5. <image class="header-img"
  6. src="https://tse4-mm.cn.bing.net/th/id/OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA?rs=1&pid=ImgDetMain"
  7. mode=""></image>
  8. <text>张三</text>
  9. <image class="right-325" src="../../../static/mine/325.png" mode=""></image>
  10. </view>
  11. <text class="order-status" v-if="refundDetail.status == 1">退款中</text>
  12. <text class="order-status" v-if="refundDetail.status == 2">退款成功</text>
  13. <text class="order-status" v-if="refundDetail.status == 3">拒绝退款</text>
  14. </view>
  15. <view class="commodity-information">
  16. <view class="commodity-1">
  17. <image class="commodity-img"
  18. src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
  19. mode=""></image>
  20. <view class="information-right">
  21. <view class="commodity-2">
  22. <view class="commodity-title">
  23. OATLY 噢麦力 醇香燕麦奶植物蛋白
  24. </view>
  25. </view>
  26. <view class="commodity-3">
  27. <view class="specifications">
  28. 【醇香】250ml*3
  29. </view>
  30. </view>
  31. <view class="commodity-price">
  32. <text style="color: #222;font-size: 26rpx;">退款</text>
  33. <text style="font-size: 20rpx;">¥</text>
  34. <text>133</text>.
  35. <text style="font-size: 20rpx;">22</text>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="result" v-if="refundDetail.status == 1">
  41. <view class="result-left">
  42. 申请中
  43. </view>
  44. <view class="result-right">
  45. 等待卖家同意退款
  46. </view>
  47. </view>
  48. <view class="result" v-if="refundDetail.status == 2">
  49. <view class="result-left">
  50. 退款成功
  51. </view>
  52. <view class="result-right">
  53. 退款成功¥29.90
  54. </view>
  55. </view>
  56. <view class="result" v-if="refundDetail.status == 3">
  57. <view class="result-left">
  58. 退款失败
  59. </view>
  60. <view class="result-right">
  61. 卖家拒绝退款
  62. </view>
  63. </view>
  64. <view class="btn-list">
  65. <button class="status-1">删除记录</button><button class="status-2" @click="$emit('toRefundDetail')">售后详情</button>
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. props:{
  72. refundDetail:{
  73. typeof:Object,
  74. default:{}
  75. }
  76. },
  77. data() {
  78. return {
  79. }
  80. },
  81. }
  82. </script>
  83. <style scoped lang="scss">
  84. .detail {
  85. padding: 28rpx 20rpx;
  86. background-color: #fff;
  87. border-radius: 16rpx;
  88. margin-top: 28rpx;
  89. .title {
  90. display: flex;
  91. justify-content: space-between;
  92. .title-left {
  93. display: flex;
  94. font-size: 32rpx;
  95. align-items: center;
  96. .header-img {
  97. width: 36rpx;
  98. height: 36rpx;
  99. border-radius: 50%;
  100. margin-right: 20rpx;
  101. }
  102. .right-325 {
  103. width: 32rpx;
  104. height: 32rpx;
  105. }
  106. }
  107. .order-status {
  108. color: #f83224;
  109. font-size: 26rpx;
  110. }
  111. }
  112. .commodity-information {
  113. margin-top: 28rpx;
  114. .information-right {
  115. width: 70%;
  116. }
  117. .commodity-1 {
  118. display: flex;
  119. .commodity-img {
  120. width: 180rpx;
  121. height: 180rpx;
  122. margin-right: 20rpx;
  123. border-radius: 10rpx;
  124. }
  125. .commodity-2 {
  126. display: flex;
  127. justify-content: space-between;
  128. .commodity-title {
  129. width: 100%;
  130. overflow: hidden;
  131. white-space: nowrap;
  132. text-overflow: ellipsis;
  133. margin-right: 38rpx;
  134. }
  135. }
  136. .commodity-3 {
  137. display: flex;
  138. justify-content: space-between;
  139. margin-top: 20rpx;
  140. color: #777;
  141. .specifications {
  142. font-size: 28rpx;
  143. color: #777;
  144. }
  145. }
  146. .commodity-price {
  147. margin-top: 40rpx;
  148. }
  149. }
  150. }
  151. .price {
  152. display: flex;
  153. justify-content: flex-end;
  154. font-size: 28rpx;
  155. align-items: flex-end;
  156. }
  157. .result {
  158. background-color: #f4f4f4;
  159. border-radius: 16rpx;
  160. height: 76rpx;
  161. display: flex;
  162. align-items: center;
  163. margin-top: 20rpx;
  164. padding-left: 24rpx;
  165. .result-left {
  166. margin-right: 32rpx;
  167. color: #222;
  168. font-size: 28rpx;
  169. }
  170. .result-right {
  171. color: #333;
  172. font-size: 28rpx;
  173. }
  174. }
  175. .btn-list {
  176. display: flex;
  177. justify-content: flex-end;
  178. margin-top: 34rpx;
  179. .status-1 {
  180. background-color: #fff;
  181. border-radius: 34rpx;
  182. margin: 0;
  183. padding: 0;
  184. font-size: 28rpx;
  185. color: #222;
  186. width: 168rpx;
  187. height: 68rpx;
  188. margin-right: 20rpx;
  189. border: 2rpx solid #979797;
  190. }
  191. .status-2 {
  192. background-color: #ffffff;
  193. border-radius: 34rpx;
  194. margin: 0;
  195. padding: 0;
  196. font-size: 28rpx;
  197. color: #f83224;
  198. width: 168rpx;
  199. height: 68rpx;
  200. border: 2rpx solid #f83224;
  201. }
  202. }
  203. }
  204. </style>