|
|
|
@ -2,14 +2,8 @@
|
|
|
|
|
<view class="container">
|
|
|
|
|
<view class="bg-sear">
|
|
|
|
|
<view class="scrolltop">
|
|
|
|
|
<view
|
|
|
|
|
class="section"
|
|
|
|
|
@tap="toSearchPage"
|
|
|
|
|
>
|
|
|
|
|
<image
|
|
|
|
|
src="@/static/images/icon/search.png"
|
|
|
|
|
class="search-img"
|
|
|
|
|
/>
|
|
|
|
|
<view class="section" @tap="toSearchPage">
|
|
|
|
|
<image src="@/static/images/icon/search.png" class="search-img" />
|
|
|
|
|
<text class="placeholder">
|
|
|
|
|
搜索
|
|
|
|
|
</text>
|
|
|
|
@ -19,30 +13,13 @@
|
|
|
|
|
|
|
|
|
|
<view class="content">
|
|
|
|
|
<!-- swiper -->
|
|
|
|
|
<swiper
|
|
|
|
|
:autoplay="autoplay"
|
|
|
|
|
:indicator-color="indicatorColor"
|
|
|
|
|
:interval="interval"
|
|
|
|
|
:duration="duration"
|
|
|
|
|
:indicator-active-color="indicatorActiveColor + ' '"
|
|
|
|
|
:circular="true"
|
|
|
|
|
class="pic-swiper"
|
|
|
|
|
indicator-dots
|
|
|
|
|
previous-margin="20rpx"
|
|
|
|
|
next-margin="20rpx"
|
|
|
|
|
>
|
|
|
|
|
<block
|
|
|
|
|
v-for="(item, index) in indexImgs"
|
|
|
|
|
:key="index"
|
|
|
|
|
>
|
|
|
|
|
<swiper :autoplay="autoplay" :indicator-color="indicatorColor" :interval="interval" :duration="duration"
|
|
|
|
|
:indicator-active-color="indicatorActiveColor + ' '" :circular="true" class="pic-swiper" indicator-dots
|
|
|
|
|
previous-margin="20rpx" next-margin="20rpx">
|
|
|
|
|
<block v-for="(item, index) in indexImgs" :key="index">
|
|
|
|
|
<swiper-item class="banner-item">
|
|
|
|
|
<view class="img-box">
|
|
|
|
|
<image
|
|
|
|
|
:src="item.imgUrl"
|
|
|
|
|
:data-prodid="item.relation"
|
|
|
|
|
class="banner"
|
|
|
|
|
@tap="toProdPage"
|
|
|
|
|
/>
|
|
|
|
|
<image :src="item.imgUrl" :data-prodid="item.relation" class="banner" @tap="toProdPage" />
|
|
|
|
|
</view>
|
|
|
|
|
</swiper-item>
|
|
|
|
|
</block>
|
|
|
|
@ -50,60 +27,29 @@
|
|
|
|
|
<!-- end swiper -->
|
|
|
|
|
|
|
|
|
|
<view class="cat-item">
|
|
|
|
|
<view
|
|
|
|
|
class="item"
|
|
|
|
|
data-sts="1"
|
|
|
|
|
@tap="toClassifyPage"
|
|
|
|
|
>
|
|
|
|
|
<view class="item" data-sts="1" @tap="toClassifyPage">
|
|
|
|
|
<image src="@/static/images/icon/newProd.png" />
|
|
|
|
|
<text>新品推荐</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
|
class="item"
|
|
|
|
|
data-sts="1"
|
|
|
|
|
@tap="toClassifyPage"
|
|
|
|
|
>
|
|
|
|
|
<view class="item" data-sts="1" @tap="toClassifyPage">
|
|
|
|
|
<image src="@/static/images/icon/timePrice.png" />
|
|
|
|
|
<text>限时特惠</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
|
class="item"
|
|
|
|
|
data-sts="3"
|
|
|
|
|
@tap="toClassifyPage"
|
|
|
|
|
>
|
|
|
|
|
<view class="item" data-sts="3" @tap="toClassifyPage">
|
|
|
|
|
<image src="@/static/images/icon/neweveryday.png" />
|
|
|
|
|
<text>每日疯抢</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
|
class="item"
|
|
|
|
|
@tap="toCouponCenter"
|
|
|
|
|
>
|
|
|
|
|
<view class="item" @tap="toCouponCenter">
|
|
|
|
|
<image src="@/static/images/icon/newprods.png" />
|
|
|
|
|
<text>领优惠券</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 消息播放 -->
|
|
|
|
|
<view
|
|
|
|
|
v-if="news && news.length"
|
|
|
|
|
class="message-play"
|
|
|
|
|
@tap="onNewsPage"
|
|
|
|
|
>
|
|
|
|
|
<image
|
|
|
|
|
src="@/static/images/icon/horn.png"
|
|
|
|
|
class="hornpng"
|
|
|
|
|
/>
|
|
|
|
|
<swiper
|
|
|
|
|
:vertical="true"
|
|
|
|
|
:autoplay="true"
|
|
|
|
|
:circular="true"
|
|
|
|
|
duration="1000"
|
|
|
|
|
class="swiper-cont"
|
|
|
|
|
>
|
|
|
|
|
<block
|
|
|
|
|
v-for="(item, index) in news"
|
|
|
|
|
:key="index"
|
|
|
|
|
>
|
|
|
|
|
<view v-if="news && news.length" class="message-play" @tap="onNewsPage">
|
|
|
|
|
<image src="@/static/images/icon/horn.png" class="hornpng" />
|
|
|
|
|
<swiper :vertical="true" :autoplay="true" :circular="true" duration="1000" class="swiper-cont">
|
|
|
|
|
<block v-for="(item, index) in news" :key="index">
|
|
|
|
|
<swiper-item class="items">
|
|
|
|
|
{{ item.title }}
|
|
|
|
|
</swiper-item>
|
|
|
|
@ -113,49 +59,24 @@
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view
|
|
|
|
|
v-if="updata"
|
|
|
|
|
class="updata"
|
|
|
|
|
>
|
|
|
|
|
<block
|
|
|
|
|
v-for="(item, index) in taglist"
|
|
|
|
|
:key="index"
|
|
|
|
|
>
|
|
|
|
|
<view v-if="updata" class="updata">
|
|
|
|
|
<block v-for="(item, index) in taglist" :key="index">
|
|
|
|
|
<!-- 每日上新 -->
|
|
|
|
|
<view
|
|
|
|
|
v-if="item.style==='2' && item.prods && item.prods.length"
|
|
|
|
|
class="up-to-date"
|
|
|
|
|
>
|
|
|
|
|
<view v-if="item.style==='2' && item.prods && item.prods.length" class="up-to-date">
|
|
|
|
|
<view class="title">
|
|
|
|
|
<text>{{ item.title }}</text>
|
|
|
|
|
<view
|
|
|
|
|
class="more-prod-cont"
|
|
|
|
|
data-sts="0"
|
|
|
|
|
:data-id="item.id"
|
|
|
|
|
:data-title="item.title"
|
|
|
|
|
@tap="toClassifyPage"
|
|
|
|
|
>
|
|
|
|
|
<view class="more-prod-cont" data-sts="0" :data-id="item.id" :data-title="item.title" @tap="toClassifyPage">
|
|
|
|
|
<text class="more">
|
|
|
|
|
查看更多
|
|
|
|
|
</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item-cont">
|
|
|
|
|
<block
|
|
|
|
|
v-for="(prod, index2) in item.prods"
|
|
|
|
|
:key="index2"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="prod-item"
|
|
|
|
|
:data-prodid="prod.prodId"
|
|
|
|
|
@tap="toProdPage"
|
|
|
|
|
>
|
|
|
|
|
<block v-for="(prod, index2) in item.prods" :key="index2">
|
|
|
|
|
<view class="prod-item" :data-prodid="prod.prodId" @tap="toProdPage">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="imagecont">
|
|
|
|
|
<img-show
|
|
|
|
|
:src="prod.pic"
|
|
|
|
|
:class-list="['prodimg']"
|
|
|
|
|
/>
|
|
|
|
|
<img-show :src="prod.pic" :class-list="['prodimg']" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="prod-text">
|
|
|
|
|
{{ prod.prodName }}
|
|
|
|
@ -178,19 +99,10 @@
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 商城热卖 -->
|
|
|
|
|
<view
|
|
|
|
|
v-if="item.style==='1' && item.prods && item.prods.length"
|
|
|
|
|
class="hot-sale"
|
|
|
|
|
>
|
|
|
|
|
<view v-if="item.style==='1' && item.prods && item.prods.length" class="hot-sale">
|
|
|
|
|
<view class="title">
|
|
|
|
|
<text>{{ item.title }}</text>
|
|
|
|
|
<view
|
|
|
|
|
class="more-prod-cont"
|
|
|
|
|
data-sts="0"
|
|
|
|
|
:data-id="item.id"
|
|
|
|
|
:data-title="item.title"
|
|
|
|
|
@tap="toClassifyPage"
|
|
|
|
|
>
|
|
|
|
|
<view class="more-prod-cont" data-sts="0" :data-id="item.id" :data-title="item.title" @tap="toClassifyPage">
|
|
|
|
|
<text class="more">
|
|
|
|
|
更多
|
|
|
|
|
</text>
|
|
|
|
@ -198,20 +110,10 @@
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="hotsale-item-cont">
|
|
|
|
|
<block
|
|
|
|
|
v-for="(prod, index2) in item.prods"
|
|
|
|
|
:key="index2"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="prod-items"
|
|
|
|
|
:data-prodid="prod.prodId"
|
|
|
|
|
@tap="toProdPage"
|
|
|
|
|
>
|
|
|
|
|
<block v-for="(prod, index2) in item.prods" :key="index2">
|
|
|
|
|
<view class="prod-items" :data-prodid="prod.prodId" @tap="toProdPage">
|
|
|
|
|
<view class="hot-imagecont">
|
|
|
|
|
<img-show
|
|
|
|
|
:src="prod.pic"
|
|
|
|
|
:class-list="['hotsaleimg']"
|
|
|
|
|
/>
|
|
|
|
|
<img-show :src="prod.pic" :class-list="['hotsaleimg']" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="hot-text">
|
|
|
|
|
<view class="hotprod-text">
|
|
|
|
@ -232,10 +134,7 @@
|
|
|
|
|
.{{ wxs.parsePrice(prod.price)[1] }}
|
|
|
|
|
</text>
|
|
|
|
|
</view>
|
|
|
|
|
<image
|
|
|
|
|
src="@/static/images/tabbar/basket-sel.png"
|
|
|
|
|
class="basket-img"
|
|
|
|
|
/>
|
|
|
|
|
<image src="@/static/images/tabbar/basket-sel.png" class="basket-img" />
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
@ -244,28 +143,15 @@
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 更多宝贝 -->
|
|
|
|
|
<view
|
|
|
|
|
v-if="item.style==='0' && item.prods && item.prods.length"
|
|
|
|
|
class="more-prod"
|
|
|
|
|
>
|
|
|
|
|
<view v-if="item.style==='0' && item.prods && item.prods.length" class="more-prod">
|
|
|
|
|
<view class="title">
|
|
|
|
|
{{ item.title }}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="prod-show">
|
|
|
|
|
<block
|
|
|
|
|
v-for="(prod, index2) in item.prods"
|
|
|
|
|
:key="index2"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="show-item"
|
|
|
|
|
:data-prodid="prod.prodId"
|
|
|
|
|
@tap="toProdPage"
|
|
|
|
|
>
|
|
|
|
|
<block v-for="(prod, index2) in item.prods" :key="index2">
|
|
|
|
|
<view class="show-item" :data-prodid="prod.prodId" @tap="toProdPage">
|
|
|
|
|
<view class="more-prod-pic">
|
|
|
|
|
<img-show
|
|
|
|
|
:src="prod.pic"
|
|
|
|
|
:class-list="['more-pic']"
|
|
|
|
|
/>
|
|
|
|
|
<img-show :src="prod.pic" :class-list="['more-pic']" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="prod-text-right">
|
|
|
|
|
<view class="prod-text more">
|
|
|
|
@ -286,11 +172,7 @@
|
|
|
|
|
.{{ wxs.parsePrice(prod.price)[1] }}
|
|
|
|
|
</text>
|
|
|
|
|
</view>
|
|
|
|
|
<image
|
|
|
|
|
src="@/static/images/tabbar/basket-sel.png"
|
|
|
|
|
class="basket-img"
|
|
|
|
|
@tap.stop="addToCart(prod)"
|
|
|
|
|
/>
|
|
|
|
|
<image src="@/static/images/tabbar/basket-sel.png" class="basket-img" @tap.stop="addToCart(prod)" />
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
@ -372,7 +254,9 @@ const addToCart = (item) => {
|
|
|
|
|
prodId: item.prodId
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.then(({ data }) => {
|
|
|
|
|
.then(({
|
|
|
|
|
data
|
|
|
|
|
}) => {
|
|
|
|
|
http.request({
|
|
|
|
|
url: '/p/shopCart/changeItem',
|
|
|
|
|
method: 'POST',
|
|
|
|
@ -398,7 +282,7 @@ const addToCart = (item) => {
|
|
|
|
|
const toCouponCenter = () => {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
icon: 'none',
|
|
|
|
|
title: '该功能未开源'
|
|
|
|
|
title: '功能开发中'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -446,7 +330,9 @@ const getIndexImgs = () => {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
data: {}
|
|
|
|
|
})
|
|
|
|
|
.then(({ data }) => {
|
|
|
|
|
.then(({
|
|
|
|
|
data
|
|
|
|
|
}) => {
|
|
|
|
|
indexImgs.value = data
|
|
|
|
|
seq.value = data
|
|
|
|
|
})
|
|
|
|
@ -459,7 +345,9 @@ const getNoticeList = () => {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
data: {}
|
|
|
|
|
})
|
|
|
|
|
.then(({ data }) => {
|
|
|
|
|
.then(({
|
|
|
|
|
data
|
|
|
|
|
}) => {
|
|
|
|
|
news.value = data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
@ -473,7 +361,9 @@ const getTag = () => {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
data: {}
|
|
|
|
|
})
|
|
|
|
|
.then(({ data }) => {
|
|
|
|
|
.then(({
|
|
|
|
|
data
|
|
|
|
|
}) => {
|
|
|
|
|
taglist.value = data
|
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
|
|
updata.value = false
|
|
|
|
@ -492,7 +382,9 @@ const getTagProd = (id, index) => {
|
|
|
|
|
size: 6
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.then(({ data }) => {
|
|
|
|
|
.then(({
|
|
|
|
|
data
|
|
|
|
|
}) => {
|
|
|
|
|
updata.value = false
|
|
|
|
|
updata.value = true
|
|
|
|
|
const taglistParam = taglist.value
|
|
|
|
|