|
@@ -2,15 +2,18 @@
|
|
<view class="pages">
|
|
<view class="pages">
|
|
<mescroll-body class="wrap" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
|
|
<mescroll-body class="wrap" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
|
|
<view class="product-wrap" v-if="productlist.length>0">
|
|
<view class="product-wrap" v-if="productlist.length>0">
|
|
- <view v-for="(item,index) in productlist" :key="index" @click="productclick" class="product-item">
|
|
|
|
|
|
+ <view v-for="(item,index) in productlist" :key="index" @click="productclick(item.id)" class="product-item">
|
|
<view class="product-item-img-wrap">
|
|
<view class="product-item-img-wrap">
|
|
- <image class="product-item-img" :src="item.img" mode="widthFix"></image>
|
|
|
|
|
|
+ <image class="product-item-img" :src="item.pic" mode="aspectFit"></image>
|
|
</view>
|
|
</view>
|
|
<view class="product-item-info">
|
|
<view class="product-item-info">
|
|
- <view class="product-item-til">{{item.title}}</view>
|
|
|
|
- <view class="product-item-brand">{{item.brand}} <text class="postage" v-if="item.postage">包邮</text></view>
|
|
|
|
- <view class="product-item-addr">{{item.addr}}</view>
|
|
|
|
- <view class="product-item-price"><text class="rmb">¥</text> <text class="price">{{item.price}}</text> / {{item.unit}}</view>
|
|
|
|
|
|
+ <view class="product-item-til">{{item.name}}</view>
|
|
|
|
+ <view class="product-item-brand">{{item.brandName}} <text class="postage" v-if="item.postage">包邮</text></view>
|
|
|
|
+ <view class="product-item-addr">{{item.placeOfProduction}}</view>
|
|
|
|
+ <view class="product-item-price">
|
|
|
|
+ <text class="rmb" v-if="item.price">¥</text> <text class="price" :class="!item.price?'noprice':''">{{item.price||"暂无价格"}}</text>
|
|
|
|
+ <text v-if="item.unit">/ {{item.unit}}</text>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -115,7 +118,7 @@
|
|
this.params = Object.assign(this.params,{pageNum:pageNum,pageSize:pageSize});
|
|
this.params = Object.assign(this.params,{pageNum:pageNum,pageSize:pageSize});
|
|
let thetoken = this.params.tokenhead + this.params.token;
|
|
let thetoken = this.params.tokenhead + this.params.token;
|
|
console.log('thetoken',thetoken);
|
|
console.log('thetoken',thetoken);
|
|
- this.$api.http.get(this.config.apiBaseurl+'/pre/own',{params:this.params,header: {Authorization:thetoken}}).then(data => {
|
|
|
|
|
|
+ this.$api.http.get(this.config.apiBaseurl+'/prod/pub/list',{params:this.params,header: {Authorization:thetoken}}).then(data => {
|
|
console.log('1111111111',data);
|
|
console.log('1111111111',data);
|
|
if(data.data.code=='1001'){
|
|
if(data.data.code=='1001'){
|
|
// uni.redirectTo({
|
|
// uni.redirectTo({
|
|
@@ -137,10 +140,10 @@
|
|
// let hasNext = data.xxx;
|
|
// let hasNext = data.xxx;
|
|
|
|
|
|
//设置列表数据
|
|
//设置列表数据
|
|
- if(page.num == 1) this.mescrollList = []; //如果是第一页需手动置空列表
|
|
|
|
- this.mescrollList = this.mescrollList.concat(curPageData); //追加新数据
|
|
|
|
|
|
+ if(page.num == 1) this.productlist = []; //如果是第一页需手动置空列表
|
|
|
|
+ this.productlist = this.productlist.concat(curPageData); //追加新数据
|
|
// console.log('page.num',page.num);
|
|
// console.log('page.num',page.num);
|
|
- console.log('this.mescrollList',JSON.parse(JSON.stringify(this.mescrollList)));
|
|
|
|
|
|
+ console.log('this.productlist',JSON.parse(JSON.stringify(this.productlist)));
|
|
|
|
|
|
//方法二(推荐): 后台接口有返回列表的总数据量 totalSize
|
|
//方法二(推荐): 后台接口有返回列表的总数据量 totalSize
|
|
this.mescroll.endBySize(curPageLen, totalSize);
|
|
this.mescroll.endBySize(curPageLen, totalSize);
|
|
@@ -157,9 +160,9 @@
|
|
|
|
|
|
},
|
|
},
|
|
//产品点击
|
|
//产品点击
|
|
- productclick(product){
|
|
|
|
|
|
+ productclick(id){
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:`/pages/product/product?product=${product}`,
|
|
|
|
|
|
+ url:`/pages/product/product?id=${id}`,
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|