123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <template>
- <view class="">
- <zhSlidingMenu ref='zhSlidingMenu' :tabbar='list' :scrollH="scrollH">
- <template #default="{scroll_list,language}">
- <view class="goods">
- <view class="goods_item" v-for="(item, index) in scroll_list" :key="index"
- @click="clickGoods(item,index)">
- <image class="goods_item_img" :src="item.image" mode=""></image>
- <view class="goods_item_name" v-if="language =='zh-CN'">
- {{item.name_cn}}
- </view>
- <view class="goods_item_name" v-if="language =='en-US'">
- {{item.name_en}}
- </view>
- <view class="goods_item_name" v-if="language =='es-ES'">
- {{item.name_es}}
- </view>
- <view class="goods_item_name" v-if="language =='it-IT'">
- {{item.name_ita}}
- </view>
- </view>
- </view>
- </template>
- </zhSlidingMenu>
- </view>
- </template>
- <script>
- import zhSlidingMenu from '@/pageA/components/zh-slidingMenu/zhSlidingMenu/zhSlidingMenu.vue'
- export default {
- components: {
- zhSlidingMenu
- },
- data() {
- return {
- scrollH: 0, //scroll高度
- list1: [{
- name: "女装",
- children: [{
- name: "A字裙",
- icon: "https://cdn.uviewui.com/uview/common/classify/1/1.jpg",
- },
- {
- name: "礼服/婚纱",
- icon: "https://cdn.uviewui.com/uview/common/classify/1/14.jpg",
- }
- ]
- },
- {
- name: "美食",
- children: [{
- name: "火锅",
- icon: "https://cdn.uviewui.com/uview/common/classify/2/1.jpg",
- },
- {
- name: "精品茗茶",
- icon: "https://cdn.uviewui.com/uview/common/classify/2/7.jpg",
- },
- {
- name: "休闲食品",
- icon: "https://cdn.uviewui.com/uview/common/classify/2/8.jpg",
- },
- ]
- },
- {
- name: "美妆",
- children: [{
- name: "化妆刷",
- icon: "https://cdn.uviewui.com/uview/common/classify/3/1.jpg",
- },
- {
- name: "防晒品",
- icon: "https://cdn.uviewui.com/uview/common/classify/3/14.jpg",
- },
- {
- name: "美甲",
- icon: "https://cdn.uviewui.com/uview/common/classify/3/15.jpg",
- }
- ]
- }
- ],
- language: 'zh-CN',
- list: []
- }
- },
- onLoad() {
- uni.getSystemInfo({
- success: (res) => {
- this.scrollH = res.windowHeight
- }
- });
- if (uni.getStorageSync('language')) {
- this.language = uni.getStorageSync('language')
- }
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- onShow() {
- uni.setNavigationBarTitle({
- title: this.i18n.classification
- })
- this.category() //商品分类
- console.log(this.language);
- },
- methods: {
- clickGoods(item, index) { //点击商品
- console.log(item);
- if (this.language == 'en-US') {
- uni.navigateTo({
- url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_en + '&parent_id=' + item
- .parent_id + "&index=" + index
- })
- }
- if (this.language == 'es-ES') {
- uni.navigateTo({
- url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_es + '&parent_id=' + item
- .parent_id + "&index=" + index
- })
- }
- if (this.language == 'it-IT') {
- uni.navigateTo({
- url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_ita + '&parent_id=' + item
- .parent_id + "&index=" + index
- })
- }
- if (this.language == 'zh-CN') {
- uni.navigateTo({
- url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_cn + '&parent_id=' + item
- .parent_id + "&index=" + index
- })
- }
- },
- //商品分类列表
- category() {
- uni.$u.http.get('/api/goods/category', {
- params: {
- parent_id: 0
- }
- }).then((res) => {
- const categoryArr = res
- if (this.language == 'en-US') {
- categoryArr.forEach(item => {
- item.name = item.name_en
- })
- }
- if (this.language == 'es-ES') {
- categoryArr.forEach(item => {
- item.name = item.name_es
- })
- }
- if (this.language == 'it-IT') {
- categoryArr.forEach(item => {
- item.name = item.name_ita
- })
- }
- if (this.language == 'zh-CN') {
- categoryArr.forEach(item => {
- item.name = item.name_cn
- })
- }
- this.list = categoryArr
- console.log(categoryArr);
- }).catch(() => {
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .goods {
- display: flex;
- flex-wrap: wrap;
- .goods_item {
- width: 33.3%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- margin-top: 20rpx;
- .goods_item_img {
- width: 120rpx;
- height: 120rpx;
- }
- .goods_item_name {
- color: #333;
- font-size: 28rpx;
- font-weight: 500rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- word-break: break-all;
- text-align: center;
- }
- }
- }
- </style>
|