commodityDetail.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <template>
  2. <view class="detail">
  3. <view class="title">
  4. <view class="title-left" v-if="orderInformation.member">
  5. <image
  6. class="header-img"
  7. :src="orderInformation.member.avatar"
  8. mode=""
  9. ></image>
  10. <text>{{ orderInformation.member.nickname }}</text>
  11. <image
  12. class="right-325"
  13. src="../../../static/mine/325.png"
  14. mode=""
  15. ></image>
  16. </view>
  17. </view>
  18. <view class="commodity-information">
  19. <view class="commodity-1" v-for="item in orderInformation.goods">
  20. <image class="commodity-img" :src="item.goods_image" mode=""></image>
  21. <view class="">
  22. <view class="commodity-2">
  23. <view class="commodity-title"> {{ item.goods_name }}</view>
  24. <view class="commodity-price">
  25. <text style="font-size: 20rpx">¥</text>
  26. <text>{{ item.sku_item.price.split(".")[0] }}</text
  27. >.
  28. <text style="font-size: 20rpx">{{
  29. item.sku_item.price.split(".")[1]
  30. }}</text>
  31. </view>
  32. </view>
  33. <view class="commodity-3">
  34. <view class="specifications"> {{ item.sku_item.item }} </view>
  35. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="detail-1">
  41. <text class="_text-1">{{
  42. "共" + orderInformation.goods.length + "件商品" + "&nbsp;"
  43. }}</text>
  44. <text class="_text-2">买家实付</text>
  45. <view class="_price">
  46. <text style="font-size: 20rpx">¥</text>
  47. <text>{{ orderInformation.amount.split(".")[0] }}</text
  48. >.
  49. <text style="font-size: 20rpx">{{
  50. orderInformation.amount.split(".")[1]
  51. }}</text>
  52. </view>
  53. </view>
  54. <view class="information">
  55. <text class="_label">退款状态</text>
  56. <view style="color: #f83224"> {{ statusName }} </view>
  57. </view>
  58. <view class="information">
  59. <text class="_label">退款原因</text>
  60. <view class="_title-right">
  61. {{ orderInformation.goods[0].refund.refund_illustrate }}
  62. </view>
  63. </view>
  64. <view class="information">
  65. <text class="_label">退款金额</text>
  66. <view lass="_title-right" style="font-weight: 600">
  67. ¥{{ orderInformation.goods[0].refund.refund_price }}
  68. </view>
  69. </view>
  70. <view class="information">
  71. <text class="_label">申请时间</text>
  72. <view style="color: #222"> {{ orderInformation.created_at }} </view>
  73. </view>
  74. <view class="information">
  75. <text class="_label">退款编号</text>
  76. <view style="color: #222">
  77. <text>{{ orderInformation.order_no + "|" }}</text>
  78. <text @click="cope(orderInformation.order_no)">复制</text>
  79. </view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. export default {
  85. props: {
  86. status: {
  87. typeof: Number,
  88. default: 0,
  89. },
  90. orderInformation: {
  91. typeof: Object,
  92. default: () => {
  93. return {};
  94. },
  95. },
  96. },
  97. data() {
  98. return {};
  99. },
  100. computed: {
  101. statusName() {
  102. if (this.orderInformation.goods[0].refund.status == "0") {
  103. return "待商家处理";
  104. } else if (this.orderInformation.goods[0].refund.status == "1") {
  105. return "已退款";
  106. } else if (this.orderInformation.goods[0].refund.status == "2") {
  107. return "拒绝退款";
  108. } else if (this.orderInformation.goods[0].refund.status == "3") {
  109. return "平台介入";
  110. }
  111. },
  112. },
  113. methods: {
  114. cope(str) {
  115. uni.setClipboardData({
  116. data: str,
  117. success() {
  118. uni.showToast({
  119. title: "复制成功",
  120. icon: "none",
  121. });
  122. },
  123. });
  124. },
  125. application() {
  126. uni.navigateTo({
  127. url: "/pageC/applicationRefund/applicationRefund",
  128. });
  129. },
  130. },
  131. };
  132. </script>
  133. <style scoped lang="scss">
  134. .detail {
  135. padding: 28rpx 20rpx;
  136. background-color: #fff;
  137. border-radius: 16rpx;
  138. margin-top: 28rpx;
  139. .title {
  140. display: flex;
  141. justify-content: space-between;
  142. .title-left {
  143. display: flex;
  144. font-size: 32rpx;
  145. align-items: center;
  146. .header-img {
  147. width: 36rpx;
  148. height: 36rpx;
  149. border-radius: 50%;
  150. margin-right: 20rpx;
  151. }
  152. .right-325 {
  153. width: 32rpx;
  154. height: 32rpx;
  155. }
  156. }
  157. .order-status {
  158. color: #f83224;
  159. font-size: 26rpx;
  160. }
  161. }
  162. .commodity-information {
  163. margin-top: 28rpx;
  164. .commodity-1 {
  165. display: flex;
  166. .commodity-img {
  167. width: 180rpx;
  168. height: 180rpx;
  169. margin-right: 20rpx;
  170. border-radius: 10rpx;
  171. }
  172. .commodity-2 {
  173. display: flex;
  174. justify-content: space-between;
  175. .commodity-title {
  176. width: 366rpx;
  177. overflow: hidden;
  178. white-space: nowrap;
  179. text-overflow: ellipsis;
  180. margin-right: 38rpx;
  181. }
  182. }
  183. .commodity-3 {
  184. display: flex;
  185. justify-content: space-between;
  186. margin-top: 20rpx;
  187. color: #777;
  188. .specifications {
  189. font-size: 28rpx;
  190. color: #777;
  191. }
  192. }
  193. }
  194. }
  195. .last {
  196. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  197. padding-bottom: 20rpx;
  198. }
  199. .btn-list {
  200. display: flex;
  201. justify-content: flex-end;
  202. button {
  203. width: 152rpx;
  204. height: 58rpx;
  205. border: 2rpx solid #979797;
  206. color: #444;
  207. margin: 0;
  208. padding: 0;
  209. font-size: 24rpx;
  210. background-color: #fff;
  211. border-radius: 34rpx;
  212. margin-top: 20rpx;
  213. margin-left: 20rpx;
  214. }
  215. }
  216. .detail-1 {
  217. display: flex;
  218. justify-content: flex-end;
  219. align-items: flex-end;
  220. padding-bottom: 20rpx;
  221. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  222. ._text-1 {
  223. color: #222;
  224. font-size: 24rpx;
  225. }
  226. ._text-2 {
  227. color: #222;
  228. font-size: 28rpx;
  229. font-weight: 600;
  230. }
  231. ._price {
  232. font-weight: 600;
  233. color: #222;
  234. }
  235. }
  236. .information {
  237. display: flex;
  238. justify-content: space-between;
  239. font-size: 28rpx;
  240. align-items: flex-end;
  241. margin: 24rpx 0;
  242. ._label {
  243. font-size: 28rpx;
  244. color: #333;
  245. }
  246. ._title-right {
  247. font-size: 28rpx;
  248. color: #333;
  249. }
  250. }
  251. ._bottom {
  252. display: flex;
  253. justify-content: flex-end;
  254. font-size: 28rpx;
  255. align-items: flex-end;
  256. margin-top: 34rpx;
  257. }
  258. }
  259. </style>