commodityDetail.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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"> 待商家处理 </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. methods: {
  101. cope(str) {
  102. uni.setClipboardData({
  103. data: str,
  104. success() {
  105. uni.showToast({
  106. title: "复制成功",
  107. icon: "none",
  108. });
  109. },
  110. });
  111. },
  112. application() {
  113. uni.navigateTo({
  114. url: "/pageC/applicationRefund/applicationRefund",
  115. });
  116. },
  117. },
  118. };
  119. </script>
  120. <style scoped lang="scss">
  121. .detail {
  122. padding: 28rpx 20rpx;
  123. background-color: #fff;
  124. border-radius: 16rpx;
  125. margin-top: 28rpx;
  126. .title {
  127. display: flex;
  128. justify-content: space-between;
  129. .title-left {
  130. display: flex;
  131. font-size: 32rpx;
  132. align-items: center;
  133. .header-img {
  134. width: 36rpx;
  135. height: 36rpx;
  136. border-radius: 50%;
  137. margin-right: 20rpx;
  138. }
  139. .right-325 {
  140. width: 32rpx;
  141. height: 32rpx;
  142. }
  143. }
  144. .order-status {
  145. color: #f83224;
  146. font-size: 26rpx;
  147. }
  148. }
  149. .commodity-information {
  150. margin-top: 28rpx;
  151. .commodity-1 {
  152. display: flex;
  153. .commodity-img {
  154. width: 180rpx;
  155. height: 180rpx;
  156. margin-right: 20rpx;
  157. border-radius: 10rpx;
  158. }
  159. .commodity-2 {
  160. display: flex;
  161. justify-content: space-between;
  162. .commodity-title {
  163. width: 366rpx;
  164. overflow: hidden;
  165. white-space: nowrap;
  166. text-overflow: ellipsis;
  167. margin-right: 38rpx;
  168. }
  169. }
  170. .commodity-3 {
  171. display: flex;
  172. justify-content: space-between;
  173. margin-top: 20rpx;
  174. color: #777;
  175. .specifications {
  176. font-size: 28rpx;
  177. color: #777;
  178. }
  179. }
  180. }
  181. }
  182. .last {
  183. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  184. padding-bottom: 20rpx;
  185. }
  186. .btn-list {
  187. display: flex;
  188. justify-content: flex-end;
  189. button {
  190. width: 152rpx;
  191. height: 58rpx;
  192. border: 2rpx solid #979797;
  193. color: #444;
  194. margin: 0;
  195. padding: 0;
  196. font-size: 24rpx;
  197. background-color: #fff;
  198. border-radius: 34rpx;
  199. margin-top: 20rpx;
  200. margin-left: 20rpx;
  201. }
  202. }
  203. .detail-1 {
  204. display: flex;
  205. justify-content: flex-end;
  206. align-items: flex-end;
  207. padding-bottom: 20rpx;
  208. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  209. ._text-1 {
  210. color: #222;
  211. font-size: 24rpx;
  212. }
  213. ._text-2 {
  214. color: #222;
  215. font-size: 28rpx;
  216. font-weight: 600;
  217. }
  218. ._price {
  219. font-weight: 600;
  220. color: #222;
  221. }
  222. }
  223. .information {
  224. display: flex;
  225. justify-content: space-between;
  226. font-size: 28rpx;
  227. align-items: flex-end;
  228. margin: 24rpx 0;
  229. ._label {
  230. font-size: 28rpx;
  231. color: #333;
  232. }
  233. ._title-right {
  234. font-size: 28rpx;
  235. color: #333;
  236. }
  237. }
  238. ._bottom {
  239. display: flex;
  240. justify-content: flex-end;
  241. font-size: 28rpx;
  242. align-items: flex-end;
  243. margin-top: 34rpx;
  244. }
  245. }
  246. </style>