commodityDetail.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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" v-show="language == 'zh-CN'"
  20. >{{ item.goods.name_cn }}
  21. </view>
  22. <view class="commodity-title" v-show="language == 'en-US'"
  23. >{{ item.goods.name_en }}
  24. </view>
  25. <view class="commodity-title" v-show="language == 'es-ES'"
  26. >{{ item.goods.name_es }}
  27. </view>
  28. <view class="commodity-title" v-show="language == 'it-IT'"
  29. >{{ item.goods.name_ita }}
  30. </view>
  31. <view class="commodity-price">
  32. <text style="font-size: 20rpx">¥</text>
  33. <text>{{ item.discount_price.split(".")[0] }}</text
  34. >.
  35. <text style="font-size: 20rpx">{{
  36. item.discount_price.split(".")[1]
  37. }}</text>
  38. </view>
  39. </view>
  40. <view class="commodity-3">
  41. <view class="specifications"> {{ item.sku_item.item }} </view>
  42. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <view
  48. space="nbsp"
  49. style="font-size: 24rpx; text-align: right"
  50. v-if="commodityInformation.goods && language != 'zh-CN'"
  51. >{{ i18n.Atotalof }}
  52. <text>{{ "&nbsp;" + commodityInformation.goods.length + "&nbsp;" }}</text
  53. >{{ i18n.Atotalof + i18n.mineCommodity }} {{ "&nbsp;" }}</view
  54. >
  55. <view class="btn-list">
  56. <view
  57. space="nbsp"
  58. style="font-size: 24rpx"
  59. v-if="commodityInformation.goods && language == 'zh-CN'"
  60. >{{ i18n.Atotalof }} <text>{{ commodityInformation.goods.length }}</text
  61. >{{ i18n.Atotalof + i18n.mineCommodity }} {{ "&nbsp;" }}</view
  62. >
  63. <text style="font-size: 28rpx">{{ i18n.actualPayment }}</text>
  64. <view
  65. style="color: #222; font-weight: 600"
  66. v-if="commodityInformation.amount"
  67. >
  68. <text style="font-size: 20rpx">¥</text>
  69. <text>{{ commodityInformation.amount.split(".")[0] }}</text
  70. >.
  71. <text style="font-size: 20rpx">{{
  72. commodityInformation.amount.split(".")[1]
  73. }}</text>
  74. </view>
  75. </view>
  76. <view
  77. class="information"
  78. v-if="status == 'undelivered' || status == 'unfill'"
  79. >
  80. <text class="_label">{{ i18n.orderNotes }}</text>
  81. <view class="_title-right"> {{ commodityInformation.remark }}</view>
  82. </view>
  83. </view>
  84. </template>
  85. <script>
  86. export default {
  87. props: {
  88. status: {
  89. typeof: Number,
  90. default: 0,
  91. },
  92. commodityInformation: {
  93. typeof: Object,
  94. default: () => {
  95. return {};
  96. },
  97. },
  98. language: {
  99. typeof: String,
  100. default: "",
  101. },
  102. },
  103. computed: {
  104. i18n() {
  105. return this.$t("index");
  106. },
  107. },
  108. data() {
  109. return {
  110. avatar: "",
  111. };
  112. },
  113. watch: {
  114. commodityInformation(newVal) {
  115. console.log(newVal);
  116. if (newVal.member) {
  117. this.avatar = newVal.member.avatar;
  118. }
  119. },
  120. },
  121. methods: {
  122. application() {
  123. uni.navigateTo({
  124. url: "/pageC/applicationRefund/applicationRefund",
  125. });
  126. },
  127. },
  128. };
  129. </script>
  130. <style scoped lang="scss">
  131. .detail {
  132. padding: 28rpx 20rpx;
  133. background-color: #fff;
  134. border-radius: 16rpx;
  135. margin-top: 28rpx;
  136. .title {
  137. display: flex;
  138. justify-content: space-between;
  139. .title-left {
  140. display: flex;
  141. font-size: 32rpx;
  142. align-items: center;
  143. .header-img {
  144. width: 36rpx;
  145. height: 36rpx;
  146. border-radius: 50%;
  147. margin-right: 20rpx;
  148. }
  149. .right-325 {
  150. width: 32rpx;
  151. height: 32rpx;
  152. }
  153. }
  154. .order-status {
  155. color: #f83224;
  156. font-size: 26rpx;
  157. }
  158. }
  159. .commodity-information {
  160. margin-top: 28rpx;
  161. .commodity-1 {
  162. display: flex;
  163. margin-bottom: 10rpx;
  164. .commodity-img {
  165. width: 180rpx;
  166. height: 180rpx;
  167. margin-right: 20rpx;
  168. border-radius: 10rpx;
  169. }
  170. .commodity-2 {
  171. display: flex;
  172. justify-content: space-between;
  173. .commodity-title {
  174. width: 328rpx;
  175. overflow: hidden;
  176. white-space: nowrap;
  177. text-overflow: ellipsis;
  178. margin-right: 38rpx;
  179. }
  180. }
  181. .commodity-3 {
  182. display: flex;
  183. justify-content: space-between;
  184. margin-top: 20rpx;
  185. color: #777;
  186. .specifications {
  187. font-size: 28rpx;
  188. color: #777;
  189. }
  190. }
  191. }
  192. }
  193. .last {
  194. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  195. padding-bottom: 20rpx;
  196. }
  197. .btn-list {
  198. display: flex;
  199. justify-content: flex-end;
  200. align-items: center;
  201. }
  202. .information {
  203. display: flex;
  204. justify-content: space-between;
  205. font-size: 28rpx;
  206. align-items: flex-end;
  207. margin-top: 34rpx;
  208. ._label {
  209. font-size: 28rpx;
  210. color: #333;
  211. }
  212. ._title-right {
  213. font-size: 28rpx;
  214. color: #333;
  215. opacity: 0.6;
  216. }
  217. }
  218. }
  219. </style>