|
@@ -139,27 +139,27 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="u-flex u-row-between" style="flex-wrap: wrap;">
|
|
<view class="u-flex u-row-between" style="flex-wrap: wrap;">
|
|
- <view class="bigbox" v-for="(item,index) in recomlist" style="position: relative;" @click="todetail">
|
|
|
|
- <image src="../../static/images/index/discount.png"
|
|
|
|
|
|
+ <view class="bigbox" v-for="(item,index) in recomlist" style="position: relative;" @click="todetail(item.id)">
|
|
|
|
+ <image v-if="item.is_discount==0" src="../../static/images/index/discount.png"
|
|
style="width: 60rpx;height: 36rpx;position: absolute;left: 12rpx;top: 12rpx;z-index: 10;"
|
|
style="width: 60rpx;height: 36rpx;position: absolute;left: 12rpx;top: 12rpx;z-index: 10;"
|
|
mode="">
|
|
mode="">
|
|
</image>
|
|
</image>
|
|
- <image src=""
|
|
|
|
- style="width: 340rpx;height: 340rpx;background-color: rgba(119, 119, 119, 1) ;margin-left: -20rpx;margin-top: -18rpx;"
|
|
|
|
- mode=""></image>
|
|
|
|
|
|
+ <image :src="item.image"
|
|
|
|
+ style="width: 340rpx;height: 340rpx;;margin-left: -20rpx;margin-top: -18rpx;" mode=""></image>
|
|
<view class="title">
|
|
<view class="title">
|
|
- INSTINCT天然百利狗粮 无谷泰迪去
|
|
|
|
|
|
+ {{item.name_cn}}
|
|
</view>
|
|
</view>
|
|
<view class="">
|
|
<view class="">
|
|
<text class="money">
|
|
<text class="money">
|
|
- ¥258.00
|
|
|
|
|
|
+ ¥{{item.price}}
|
|
</text>
|
|
</text>
|
|
<text class="weight">
|
|
<text class="weight">
|
|
- ¥2kg
|
|
|
|
|
|
+ ¥{{item.weight}}kg
|
|
</text>
|
|
</text>
|
|
</view>
|
|
</view>
|
|
<view class="u-flex" style="flex-wrap: wrap;margin-top: 18rpx;column-gap: 12px;overflow: hidden;">
|
|
<view class="u-flex" style="flex-wrap: wrap;margin-top: 18rpx;column-gap: 12px;overflow: hidden;">
|
|
- <view class="taber" style="border: 1rpx solid #E5BC78;color: #E5BC78;">{{i18n.postage}}
|
|
|
|
|
|
+ <view v-if="item.is_shipping == 0" class="taber"
|
|
|
|
+ style="border: 1rpx solid #E5BC78;color: #E5BC78;">{{i18n.postage}}
|
|
</view>
|
|
</view>
|
|
<view class="taber" style="border: 1rpx solid rgba(237, 9, 9, 1);color: rgba(237, 9, 9, 1);">
|
|
<view class="taber" style="border: 1rpx solid rgba(237, 9, 9, 1);color: rgba(237, 9, 9, 1);">
|
|
{{i18n.Trade}}
|
|
{{i18n.Trade}}
|
|
@@ -180,12 +180,15 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</u-popup>
|
|
</u-popup>
|
|
- <view class="" style="height: 160rpx;"></view>
|
|
|
|
|
|
+ <!-- <view class="" style="height: 160rpx;" v-if="recomlist.length >3"></view> -->
|
|
<kj-tabbar :value1=1></kj-tabbar>
|
|
<kj-tabbar :value1=1></kj-tabbar>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+ import {
|
|
|
|
+ recom
|
|
|
|
+ } from "../../network/shopApi.js";
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -223,6 +226,7 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
|
|
+ this.recommend()
|
|
this.list = [this.i18n.border, this.i18n.shop]
|
|
this.list = [this.i18n.border, this.i18n.shop]
|
|
// this.seater()
|
|
// this.seater()
|
|
if (options.current) {
|
|
if (options.current) {
|
|
@@ -232,13 +236,14 @@
|
|
onShow() {
|
|
onShow() {
|
|
//商品推荐
|
|
//商品推荐
|
|
this.recommend()
|
|
this.recommend()
|
|
|
|
+ console.log(222222);
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
//商品推荐
|
|
//商品推荐
|
|
recommend() {
|
|
recommend() {
|
|
console.log(1111);
|
|
console.log(1111);
|
|
- uni.$u.http.post('/api/goods/recommend', {}).then(res => {
|
|
|
|
- this.recomlist = res.data
|
|
|
|
|
|
+ recom().then((res) => {
|
|
|
|
+ this.recomlist = res.data.data
|
|
})
|
|
})
|
|
},
|
|
},
|
|
subsidy(item) {
|
|
subsidy(item) {
|
|
@@ -276,9 +281,9 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
//详情
|
|
//详情
|
|
- todetail() {
|
|
|
|
|
|
+ todetail(id) {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pageA/productdetails'
|
|
|
|
|
|
+ url: '/pageA/productdetails?id='+id
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|