commodityDetail.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="detail">
  3. <view class="title">
  4. <view class="title-left">
  5. <image class="header-img" :src="avatar" mode=""></image>
  6. <text>{{ commodityInformation.nickname }}</text>
  7. <image
  8. class="right-325"
  9. src="../../../static/mine/325.png"
  10. mode=""
  11. ></image>
  12. </view>
  13. </view>
  14. <view class="commodity-information">
  15. <view class="commodity-1" v-for="item in commodityInformation.goods">
  16. <image class="commodity-img" :src="item.sku_item.image" mode=""></image>
  17. <view class="">
  18. <view class="commodity-2">
  19. <view class="commodity-title">{{ item.goods_name }} </view>
  20. <view class="commodity-price">
  21. <text style="font-size: 20rpx">¥</text>
  22. <text>{{ item.discount_price.split(".")[0] }}</text
  23. >.
  24. <text style="font-size: 20rpx">{{
  25. item.discount_price.split(".")[1]
  26. }}</text>
  27. </view>
  28. </view>
  29. <view class="commodity-3">
  30. <view class="specifications"> {{ item.sku_item.item }} </view>
  31. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="btn-list">
  37. <view
  38. space="nbsp"
  39. style="font-size: 24rpx"
  40. v-if="commodityInformation.goods"
  41. >共 <text>{{ commodityInformation.goods.length }}</text> 件商品
  42. {{ "&nbsp;" }}</view
  43. >
  44. <text style="font-size: 28rpx">买家实付</text>
  45. <view
  46. style="color: #222; font-weight: 600"
  47. v-if="commodityInformation.amount"
  48. >
  49. <text style="font-size: 20rpx">¥</text>
  50. <text>{{ commodityInformation.amount.split(".")[0] }}</text
  51. >.
  52. <text style="font-size: 20rpx">{{
  53. commodityInformation.amount.split(".")[1]
  54. }}</text>
  55. </view>
  56. </view>
  57. <view
  58. class="information"
  59. v-if="status == 'undelivered' || status == 'unfill'"
  60. >
  61. <text class="_label">订单备注</text>
  62. <view class="_title-right"> {{ commodityInformation.remark }}</view>
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. export default {
  68. props: {
  69. status: {
  70. typeof: Number,
  71. default: 0,
  72. },
  73. commodityInformation: {
  74. typeof: Object,
  75. default: () => {
  76. return {};
  77. },
  78. },
  79. },
  80. data() {
  81. return {
  82. avatar: "",
  83. };
  84. },
  85. watch: {
  86. commodityInformation(newVal) {
  87. console.log(newVal);
  88. if (newVal.member) {
  89. this.avatar = newVal.member.avatar;
  90. }
  91. },
  92. },
  93. methods: {
  94. application() {
  95. uni.navigateTo({
  96. url: "/pageC/applicationRefund/applicationRefund",
  97. });
  98. },
  99. },
  100. };
  101. </script>
  102. <style scoped lang="scss">
  103. .detail {
  104. padding: 28rpx 20rpx;
  105. background-color: #fff;
  106. border-radius: 16rpx;
  107. margin-top: 28rpx;
  108. .title {
  109. display: flex;
  110. justify-content: space-between;
  111. .title-left {
  112. display: flex;
  113. font-size: 32rpx;
  114. align-items: center;
  115. .header-img {
  116. width: 36rpx;
  117. height: 36rpx;
  118. border-radius: 50%;
  119. margin-right: 20rpx;
  120. }
  121. .right-325 {
  122. width: 32rpx;
  123. height: 32rpx;
  124. }
  125. }
  126. .order-status {
  127. color: #f83224;
  128. font-size: 26rpx;
  129. }
  130. }
  131. .commodity-information {
  132. margin-top: 28rpx;
  133. .commodity-1 {
  134. display: flex;
  135. margin-bottom: 10rpx;
  136. .commodity-img {
  137. width: 180rpx;
  138. height: 180rpx;
  139. margin-right: 20rpx;
  140. border-radius: 10rpx;
  141. }
  142. .commodity-2 {
  143. display: flex;
  144. justify-content: space-between;
  145. .commodity-title {
  146. width: 328rpx;
  147. overflow: hidden;
  148. white-space: nowrap;
  149. text-overflow: ellipsis;
  150. margin-right: 38rpx;
  151. }
  152. }
  153. .commodity-3 {
  154. display: flex;
  155. justify-content: space-between;
  156. margin-top: 20rpx;
  157. color: #777;
  158. .specifications {
  159. font-size: 28rpx;
  160. color: #777;
  161. }
  162. }
  163. }
  164. }
  165. .last {
  166. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  167. padding-bottom: 20rpx;
  168. }
  169. .btn-list {
  170. display: flex;
  171. justify-content: flex-end;
  172. align-items: center;
  173. }
  174. .information {
  175. display: flex;
  176. justify-content: space-between;
  177. font-size: 28rpx;
  178. align-items: flex-end;
  179. margin-top: 34rpx;
  180. ._label {
  181. font-size: 28rpx;
  182. color: #333;
  183. }
  184. ._title-right {
  185. font-size: 28rpx;
  186. color: #333;
  187. opacity: 0.6;
  188. }
  189. }
  190. }
  191. </style>