This commit is contained in:
weipengfei 2024-04-06 17:17:33 +08:00
parent e843437054
commit 33a80b53cd
3 changed files with 21 additions and 7 deletions

View File

@ -67,7 +67,7 @@
<view class='recommendList' :class="indexP?'on':''">
<WaterfallsFlow v-if="hostProduct.length>0" :wfList='hostProduct' @itemTap="goDetail" :type="0" :sale_type="sale_type"/>
<view class='pictrue' v-else>
<view class='pictrue' v-if="!loading&&hostProduct.length==0">
<image :src="`${domain}/static/images/noCart.png`"></image>
<view>暂无商品看点别的吧</view>
</view>
@ -123,7 +123,11 @@
sale_type:{
type: [Number, String],
default: 1
}
},
loading:{
type: Boolean,
default: false
},
},
data() {
return {

View File

@ -2,8 +2,8 @@
"name" : "惠农生活",
"appid" : "__UNI__3A527D1",
"description" : "",
"versionName" : "2.0.18",
"versionCode" : 2018,
"versionName" : "2.0.21",
"versionCode" : 2021,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

@ -89,7 +89,7 @@
<view v-if="recommend_switch == 1" class="index-product-wrapper">
<!-- 首发新品 -->
<recommend ref="recommendRef" :hostProduct="hostProduct[hostIndex]"
@changeRecommedTab="changeRecommedTab" showTab :indexP="true" :isLogin="isLogin">
@changeRecommedTab="changeRecommedTab" showTab :indexP="true" :isLogin="isLogin" :loading="loading">
</recommend>
<view class="loadingicon acea-row row-center-wrapper"
v-if="hostProduct[hostIndex].length > 0 || hotLoading[hostIndex]">
@ -170,7 +170,7 @@
<image :src="`${domain}/static/images/noCart.png`"></image>
<view>暂无商品去看点什么吧</view>
</view>
<recommend :hostProduct="hostProduct[hostIndex]"></recommend>
<recommend :hostProduct="hostProduct[hostIndex]" :loading="loading"></recommend>
</view>
</block>
</view>
@ -441,7 +441,6 @@
privacyStatus: false,
errorNetwork: false,
userInfo: {},
loading: false,
statusBarHeight: statusBarHeight,
navIndex: 0,
navTop: [],
@ -1049,6 +1048,7 @@
that.hotLoading[e] = true;
that.hotTitle = '加载中';
getProductHot(that.hotPage, that.hotLimit, 1, 1).then(res => {
res.data.list = this.shuffleArray(res.data.list);
let list = res.data.list;
let productList = that.hostProduct;
if (!productList[e]) productList[e] = [];
@ -1082,6 +1082,7 @@
getProductslist({
...query
}).then(res => {
res.data.list = this.shuffleArray(res.data.list);
let list = res.data.list;
let productList = that.hostProduct;
if (!productList[e]) productList[e] = [];
@ -1096,6 +1097,15 @@
that.$set(that, 'hotLimit', res.data.limit);
});
},
//
shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
},
getCateData() {
getCateData().then(res => {