This commit is contained in:
DESKTOP-GMUNQ1B\k 2024-04-11 18:11:16 +08:00
parent 3063a637a2
commit 5e2af7e198
5 changed files with 14 additions and 7 deletions

View File

@ -32,7 +32,7 @@
</image>
</view>
<view class="nav-item-down">
<view class="nav-item-down-title">名优特产</view>
<view class="nav-item-down-title">名优特产</view>
<view class="nav-item-down-desc">地方特色特产</view>
</view>
</view>

View File

@ -15,8 +15,8 @@ let openPlantGrass = '-openPlantGrass-'
let httpSix, httpApi;
// const env = 'dev'; // 开发
const env = 'prod'; // 生产
const env = 'dev'; // 开发
// const env = 'prod'; // 生产
// const env = 'prew'; // 预上线
switch (env) {

View File

@ -2,8 +2,8 @@
"name": "惠农生活",
"appid": "__UNI__3A527D1",
"description": "",
"versionName": "2.0.20",
"versionCode": 2020,
"versionName": "2.0.27",
"versionCode": 2027,
"transformPx": false,
/* 5+App */
"app-plus": {

View File

@ -324,8 +324,8 @@
"path": "home/home",
"style": {
"navigationBarTitleText": "里海云仓",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
"navigationStyle": "custom",
"enablePullDownRefresh": true
}
},
{

View File

@ -313,6 +313,7 @@
mer_cate_id: '',
keyword: '',
deduction_rate: '', //
rand: 1
}
}
},
@ -326,6 +327,9 @@
onPageScroll() {
uni.$emit('scroll');
},
onPullDownRefresh() {
this.getProductslist(true);
},
methods: {
navTo(url) {
uni.navigateTo({
@ -388,10 +392,13 @@
if (this.isLoading == -1) return;
this.isLoading = 1;
getProductslist(this.where).then(res => {
uni.stopPullDownRefresh();
this.hostProduct = [...this.hostProduct, ...res.data.list];
this.isLoading = 0;
if (res.data.list.length < this.where.limit) this.isLoading = -1;
this.where.page++;
}).catch(err => {
uni.stopPullDownRefresh();
})
},
goDetail(item) {