|
@@ -27,44 +27,63 @@
|
|
|
<image v-else src="static/images/shaixuan.png" style="width: 24rpx;height: 24rpx;" mode=""></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
<liu-waterfall :dataList="data" :column="columns" @click="detail"></liu-waterfall>
|
|
|
<view class="pop" style="position: absolute;top:80rpx" v-if="shai&¤t==4">
|
|
|
+ <!-- 价格区间 -->
|
|
|
<view class=" title">{{i18n.Pricerange}}</view>
|
|
|
<view class="u-flex u-row-between">
|
|
|
<view class="input u-flex u-row-center">
|
|
|
- <input style="text-align: center;" type="text" :placeholder="i18n.Bottomprice" />
|
|
|
+ <input style="text-align: center;" type="text" :placeholder="i18n.Bottomprice"
|
|
|
+ v-model="price_range_start" />
|
|
|
</view>
|
|
|
<text>-</text>
|
|
|
<view class="input u-flex u-row-center">
|
|
|
- <input style="text-align: center;" type="text" :placeholder="i18n.highestprice" />
|
|
|
+ <input style="text-align: center;" type="text" :placeholder="i18n.highestprice"
|
|
|
+ v-model="price_range_end" />
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <!-- 重量区间 -->
|
|
|
<view class="title" style="margin-top: 36rpx;">{{i18n.Weightinterval}}</view>
|
|
|
<view class="u-flex u-row-between">
|
|
|
<view class="input u-flex u-row-center">
|
|
|
- <input style="text-align: center;" type="text" :placeholder="i18n.Bottomprice" />
|
|
|
+ <input style="text-align: center;" type="text" :placeholder="i18n.Bottomprice"
|
|
|
+ v-model="weight_range_start" />
|
|
|
</view>
|
|
|
<text>-</text>
|
|
|
<view class="input u-flex u-row-center">
|
|
|
- <input style="text-align: center;" type="text" :placeholder="i18n.highestprice" />
|
|
|
+ <input style="text-align: center;" type="text" :placeholder="i18n.highestprice"
|
|
|
+ v-model="weight_range_end" />
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <!-- 品牌 -->
|
|
|
<view style="margin-top: 36rpx;" class="title">{{i18n.brand}}</view>
|
|
|
<view class="u-flex " style="flex-wrap: wrap;column-gap: 34rpx;">
|
|
|
- <view @click="changei(idx)" class="item" v-for="(item,idx) in 8" :key="idx"
|
|
|
- :class="index==idx?'acitem':'item'">
|
|
|
- PURICH/醇粹
|
|
|
+ <view @click="changei(item,idx)" v-for="(item,idx) in brandlist" :key="idx">
|
|
|
+ <view :class="index==idx?'acitem':'item'" class="" v-if="language =='zh-CN'">
|
|
|
+ {{item.name_cn}}
|
|
|
+ </view>
|
|
|
+ <view :class="index==idx?'acitem':'item'" class="" v-if="language =='en-US'">
|
|
|
+ {{item.name_en}}
|
|
|
+ </view>
|
|
|
+ <view :class="index==idx?'acitem':'item'" class="" v-if="language =='es-ES'">
|
|
|
+ {{item.name_es}}
|
|
|
+ </view>
|
|
|
+ <view :class="index==idx?'acitem':'item'" class="" v-if="language =='it-IT'">
|
|
|
+ {{item.name_ita}}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="margin-top: 36rpx;" class="title">{{i18n.Proprietary}}</view>
|
|
|
- <view class="item">
|
|
|
+ <view :class="yes==true?'acitem':'item'" @click="yesa">
|
|
|
+ <!-- {{yes}} -->
|
|
|
{{i18n.yes}}
|
|
|
</view>
|
|
|
<view class="bottom u-flex" style="margin-top: 58rpx;">
|
|
|
<view class="btn1">
|
|
|
{{i18n.reset}}
|
|
|
</view>
|
|
|
- <view class="btn2" @click="shai=false">
|
|
|
+ <view class="btn2" @click="enter">
|
|
|
{{i18n.enter}}
|
|
|
</view>
|
|
|
</view>
|
|
@@ -77,6 +96,7 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ yes: false,
|
|
|
shai: false,
|
|
|
current: 0,
|
|
|
curess: 0,
|
|
@@ -87,16 +107,22 @@
|
|
|
goodsid: '',
|
|
|
title: '',
|
|
|
parent_id: '',
|
|
|
- language:'',
|
|
|
- page:1,
|
|
|
-
|
|
|
+ language: '',
|
|
|
+ page: 1,
|
|
|
+ weight_range_start: '', //重量区间 start
|
|
|
+ weight_range_end: '', //重量区间 end
|
|
|
+ brand_id: '', //品牌id
|
|
|
+ price_range_start: '', //价格区间
|
|
|
+ price_range_end: '', //价格区间
|
|
|
+ brandlist: []
|
|
|
};
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
- console.log(options);
|
|
|
this.goodsid = options.id
|
|
|
this.title = options.title
|
|
|
this.parent_id = options.parent_id
|
|
|
+ this.curess = options.index
|
|
|
+ console.log(options.index);
|
|
|
},
|
|
|
onShow() {
|
|
|
uni.setNavigationBarTitle({
|
|
@@ -107,6 +133,7 @@
|
|
|
if (uni.getStorageSync('language') != '') {
|
|
|
this.language = uni.getStorageSync('language')
|
|
|
}
|
|
|
+ this.brand()
|
|
|
},
|
|
|
computed: {
|
|
|
i18n() {
|
|
@@ -114,11 +141,19 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ enter() {
|
|
|
+ this.shai = false
|
|
|
+ this.goods(this.goodsid)
|
|
|
+ },
|
|
|
+
|
|
|
+ yesa() {
|
|
|
+ this.yes = !this.yes
|
|
|
+ },
|
|
|
//商品详情
|
|
|
- detail(item){
|
|
|
+ detail(item) {
|
|
|
console.log(item);
|
|
|
uni.navigateTo({
|
|
|
- url:'/pageA/productdetails?id='+item.id
|
|
|
+ url: '/pageA/productdetails?id=' + item.id
|
|
|
})
|
|
|
},
|
|
|
//商品分类
|
|
@@ -126,8 +161,8 @@
|
|
|
uni.$u.http.get('/api/goods/category', {
|
|
|
params: {
|
|
|
parent_id: id,
|
|
|
- limit:10,
|
|
|
- page:this.page
|
|
|
+ limit: 10,
|
|
|
+ page: this.page
|
|
|
}
|
|
|
}).then((res) => {
|
|
|
const categoryArr = res
|
|
@@ -152,7 +187,7 @@
|
|
|
item.name = item.name_cn
|
|
|
})
|
|
|
}
|
|
|
- this.list1 = categoryArr
|
|
|
+ this.list1 = categoryArr.reverse()
|
|
|
}).catch(() => {
|
|
|
|
|
|
})
|
|
@@ -161,7 +196,14 @@
|
|
|
goods(id) {
|
|
|
uni.$u.http.get('/api/goods', {
|
|
|
params: {
|
|
|
- category_id: id
|
|
|
+ category_id: id,
|
|
|
+ limit: 10,
|
|
|
+ page: this.page,
|
|
|
+ weight_range_start: this.weight_range_start,
|
|
|
+ weight_range_end: this.weight_range_end,
|
|
|
+ brand_id: this.brand_id,
|
|
|
+ price_range_start: this.price_range_start,
|
|
|
+ price_range_end: this.price_range_end
|
|
|
}
|
|
|
}).then((res) => {
|
|
|
this.data = res.data
|
|
@@ -169,6 +211,17 @@
|
|
|
|
|
|
})
|
|
|
},
|
|
|
+ //品牌列表
|
|
|
+ brand(id) {
|
|
|
+ uni.$u.http.get('/api/goods/brand', {
|
|
|
+ params: {}
|
|
|
+ }).then((res) => {
|
|
|
+ console.log(res);
|
|
|
+ this.brandlist = res
|
|
|
+ }).catch(() => {
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
shaixuan() {
|
|
|
this.shai = true,
|
|
|
this.current = 4
|
|
@@ -176,12 +229,32 @@
|
|
|
click(item) {
|
|
|
console.log('item', item);
|
|
|
this.curess = item.index
|
|
|
+ this.title = item.title
|
|
|
this.goods(item.id)
|
|
|
- // uni.navigateTo({
|
|
|
- // url: '/pageB/delivery'
|
|
|
- // })
|
|
|
+ if (this.language == 'en-US') {
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: item.name_en
|
|
|
+ })
|
|
|
+ }
|
|
|
+ if (this.language == 'es-ES') {
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: item.name_es
|
|
|
+ })
|
|
|
+ }
|
|
|
+ if (this.language == 'it-IT') {
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: item.name_ita
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ if (this.language == 'zh-CN') {
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: item.name_cn
|
|
|
+ })
|
|
|
+ }
|
|
|
},
|
|
|
- changei(idx) {
|
|
|
+ changei(item,idx) {
|
|
|
+ this.brand_id = item.id
|
|
|
this.index = idx
|
|
|
}
|
|
|
}
|
|
@@ -256,6 +329,7 @@
|
|
|
height: 64rpx;
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
+ border-radius: 36rpx;
|
|
|
font-size: 24rpx;
|
|
|
color: rgba(248, 50, 36, 1);
|
|
|
line-height: 64rpx;
|