Commit 56935461 authored by caimeng's avatar caimeng

修改商品详情内容

parent 8978b2a4
...@@ -32,15 +32,10 @@ ...@@ -32,15 +32,10 @@
<!-- Banner 位 --> <!-- Banner 位 -->
<view v-if="index['bannerList']" class='i-banner'> <view v-if="index['bannerList']" class='i-banner'>
<swiper :autoplay="true" :interval="3000" :duration="1000" style="height: 359rpx;"> <swiper :autoplay="true" :interval="3000" :duration="1000" style="height: 359rpx;">
<!-- <swiper-item class='swiper-item-i' v-for="(item, index) in JSON.parse(index['bannerList'])" <swiper-item class='swiper-item-i' v-for="(item, index) in JSON.parse(index['bannerList'])"
:key="item.id" @click='jump(item, index, "banner")'> :key="item.id" @click='jump(item, index, "banner")'>
<image :src='item.url' class='banner-item'></image> <image :src='item.url' class='banner-item'></image>
</swiper-item> -->
<swiper-item class='swiper-item-i'>
<image src='https://ddh.yyhock.com/appStatic/i-banner-hhym.png' class='banner-item'></image>
</swiper-item> </swiper-item>
</swiper> </swiper>
</view> </view>
......
...@@ -179,7 +179,7 @@ export default { ...@@ -179,7 +179,7 @@ export default {
try { try {
this.buryingPoint('app:my_contact_us_click') this.buryingPoint('app:my_contact_us_click')
const APP_SETTING = uni.getStorageSync('APP-SETTING'); const APP_SETTING = uni.getStorageSync('APP-SETTING');
const serviceCall = APP_SETTING ? JSON.parse(APP_SETTING)['serviceCall'] : '' const serviceCall = APP_SETTING ? JSON.parse(APP_SETTING)['phone'] : ''
this.handleCall(serviceCall) this.handleCall(serviceCall)
} catch (err) { } catch (err) {
console.log('日') console.log('日')
......
...@@ -75,17 +75,17 @@ ...@@ -75,17 +75,17 @@
"sort": "id desc" "sort": "id desc"
} }
console.log(parmas,'parmas') console.log(parmas,'parmas')
self.$request('/pawn/category/getGoodsPage','POST',parmas).then((res)=>{ self.$request('/app/goods/getGoodsPage','POST',parmas).then((res)=>{
console.log(res,'res') console.log(res,'res')
const {current,records,total,size}=res.result const {data,total}=res.result
const hasNextPage=total-self.pageSize*self.pageNum>0?true:false //是否有下一页 const hasNextPage=total-self.pageSize*self.pageNum>0?true:false //是否有下一页
if(self.loadFlag){ if(self.loadFlag){
console.log(33); console.log(33);
self.listIndex=self.listIndex.concat(records) self.listIndex=self.listIndex.concat(data)
}else{ }else{
console.log(34); console.log(34);
self.listIndex=records self.listIndex=data
} }
self.hasNextPage=hasNextPage self.hasNextPage=hasNextPage
self.loadFlag=false self.loadFlag=false
......
This diff is collapsed.
<template> <template>
<view class='product-page' v-show="productInfo!=null"> <view class='product-page' v-show="productInfo!=null">
<view class='p-banner' v-show="goodsImage!=''"> <view class='p-banner' v-show="goodsImage!=''">
<image :src='goodsImage' class='banner-item'></image> <image :src='goodsImage' mode="widthFix" class='banner-item'></image>
</view> </view>
<view class="p-box"> <view class="p-box">
<view class='box-top'> <view class='box-top'>
...@@ -14,15 +14,17 @@ ...@@ -14,15 +14,17 @@
<view class='footer-r'>{{lookSum}}次浏览</view> <view class='footer-r'>{{lookSum}}次浏览</view>
</view> </view>
</view> </view>
<view class='p-detail' > <view class='p-detail' >
<view class='det-text'>{{goodsDesc}}</view> <view class='det-text'>{{goodsDesc}}</view>
<view class="det-imglist" > <view class="det-imglist" >
<view class='list-item' v-for="item in bannerList" :key="item.id"> <view class='list-item' v-for="item in bannerList" :key="item.id">
<image class='img-f' :src='item'></image> <image class='img-f' mode="widthFix" :src='item'></image>
</view> </view>
</view> </view>
</view> </view>
<view class='p-footer'> <view class='p-footer'>
<view class='footer-l'> <view class='footer-l'>
<view class='l-attention' @click="Clickatten"> <view class='l-attention' @click="Clickatten">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment