shoptype.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <template>
  2. <view class="">
  3. <zhSlidingMenu ref='zhSlidingMenu' :tabbar='list' :scrollH="scrollH">
  4. <template #default="{scroll_list,language}">
  5. <view class="goods">
  6. <view class="goods_item" v-for="(item, index) in scroll_list" :key="index"
  7. @click="clickGoods(item,index)">
  8. <image class="goods_item_img" :src="item.image" mode=""></image>
  9. <view class="goods_item_name" v-if="language =='zh-CN'">
  10. {{item.name_cn}}
  11. </view>
  12. <view class="goods_item_name" v-if="language =='en-US'">
  13. {{item.name_en}}
  14. </view>
  15. <view class="goods_item_name" v-if="language =='es-ES'">
  16. {{item.name_es}}
  17. </view>
  18. <view class="goods_item_name" v-if="language =='it-IT'">
  19. {{item.name_ita}}
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. </zhSlidingMenu>
  25. </view>
  26. </template>
  27. <script>
  28. import zhSlidingMenu from '@/components/zh-slidingMenu/zhSlidingMenu/zhSlidingMenu.vue'
  29. export default {
  30. components: {
  31. zhSlidingMenu
  32. },
  33. data() {
  34. return {
  35. scrollH: 0, //scroll高度
  36. list1: [{
  37. name: "女装",
  38. children: [{
  39. name: "A字裙",
  40. icon: "https://cdn.uviewui.com/uview/common/classify/1/1.jpg",
  41. },
  42. {
  43. name: "礼服/婚纱",
  44. icon: "https://cdn.uviewui.com/uview/common/classify/1/14.jpg",
  45. }
  46. ]
  47. },
  48. {
  49. name: "美食",
  50. children: [{
  51. name: "火锅",
  52. icon: "https://cdn.uviewui.com/uview/common/classify/2/1.jpg",
  53. },
  54. {
  55. name: "精品茗茶",
  56. icon: "https://cdn.uviewui.com/uview/common/classify/2/7.jpg",
  57. },
  58. {
  59. name: "休闲食品",
  60. icon: "https://cdn.uviewui.com/uview/common/classify/2/8.jpg",
  61. },
  62. ]
  63. },
  64. {
  65. name: "美妆",
  66. children: [{
  67. name: "化妆刷",
  68. icon: "https://cdn.uviewui.com/uview/common/classify/3/1.jpg",
  69. },
  70. {
  71. name: "防晒品",
  72. icon: "https://cdn.uviewui.com/uview/common/classify/3/14.jpg",
  73. },
  74. {
  75. name: "美甲",
  76. icon: "https://cdn.uviewui.com/uview/common/classify/3/15.jpg",
  77. }
  78. ]
  79. }
  80. ],
  81. language: 'zh-CN',
  82. list: []
  83. }
  84. },
  85. onLoad() {
  86. uni.getSystemInfo({
  87. success: (res) => {
  88. this.scrollH = res.windowHeight
  89. }
  90. });
  91. if (uni.getStorageSync('language')) {
  92. this.language = uni.getStorageSync('language')
  93. }
  94. },
  95. computed: {
  96. i18n() {
  97. return this.$t('index')
  98. }
  99. },
  100. onShow() {
  101. uni.setNavigationBarTitle({
  102. title: this.i18n.classification
  103. })
  104. this.category() //商品分类
  105. console.log(this.language);
  106. },
  107. methods: {
  108. clickGoods(item, index) { //点击商品
  109. console.log(item);
  110. if (this.language == 'en-US') {
  111. uni.navigateTo({
  112. url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_en + '&parent_id=' + item
  113. .parent_id + "&index=" + index
  114. })
  115. }
  116. if (this.language == 'es-ES') {
  117. uni.navigateTo({
  118. url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_es + '&parent_id=' + item
  119. .parent_id + "&index=" + index
  120. })
  121. }
  122. if (this.language == 'it-IT') {
  123. uni.navigateTo({
  124. url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_ita + '&parent_id=' + item
  125. .parent_id + "&index=" + index
  126. })
  127. }
  128. if (this.language == 'zh-CN') {
  129. uni.navigateTo({
  130. url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_cn + '&parent_id=' + item
  131. .parent_id + "&index=" + index
  132. })
  133. }
  134. },
  135. //商品分类列表
  136. category() {
  137. uni.$u.http.get('/api/goods/category', {
  138. params: {
  139. parent_id: 0
  140. }
  141. }).then((res) => {
  142. const categoryArr = res
  143. if (this.language == 'en-US') {
  144. categoryArr.forEach(item => {
  145. item.name = item.name_en
  146. })
  147. }
  148. if (this.language == 'es-ES') {
  149. categoryArr.forEach(item => {
  150. item.name = item.name_es
  151. })
  152. }
  153. if (this.language == 'it-IT') {
  154. categoryArr.forEach(item => {
  155. item.name = item.name_ita
  156. })
  157. }
  158. if (this.language == 'zh-CN') {
  159. categoryArr.forEach(item => {
  160. item.name = item.name_cn
  161. })
  162. }
  163. this.list = categoryArr
  164. console.log(categoryArr);
  165. }).catch(() => {
  166. })
  167. },
  168. },
  169. }
  170. </script>
  171. <style lang="scss" scoped>
  172. .goods {
  173. display: flex;
  174. flex-wrap: wrap;
  175. .goods_item {
  176. width: 33.3%;
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. flex-direction: column;
  181. margin-top: 20rpx;
  182. .goods_item_img {
  183. width: 120rpx;
  184. height: 120rpx;
  185. }
  186. .goods_item_name {
  187. color: #333;
  188. font-size: 28rpx;
  189. font-weight: 500rpx;
  190. display: -webkit-box;
  191. -webkit-box-orient: vertical;
  192. -webkit-line-clamp: 1;
  193. overflow: hidden;
  194. word-break: break-all;
  195. text-align: center;
  196. }
  197. }
  198. }
  199. </style>