1. 增加 DetailBottomBar.vue
- 需要引入图片
detail_bottom.png
<template>
<div class="bottom-bar">
<div class="bar-item bar-left">
<div>
<i class="icon service"></i>
<span class="text">客服</span>
</div>
<div>
<i class="icon shop"></i>
<span class="text">店铺</span>
</div>
<div>
<i class="icon select"></i>
<span class="text">收藏</span>
</div>
</div>
<div class="bar-item bar-right">
<div class="cart">加入购物车</div>
<div class="buy">购买</div>
</div>
</div>
</template>
<script>
export default {
name: 'DetailBottomBar'
}
</script>
<style scoped>
.bottom-bar {
height: 58px;
background-color: #fff;
position: relative;
display: flex;
text-align: center;
}
.bar-item {
flex: 1;
display: flex;
}
.bar-item > div {
flex: 1;
}
.bar-left .text {
font-size: 13px;
}
.bar-left .icon {
display: block;
width: 22px;
height: 22px;
margin: 10px auto 3px;
background: url('~assets/img/detail/detail_bottom.png') 0 0/100%;
}
.bar-left .service {
background-position: 0 -54px;
}
.bar-left .shop {
background-position: 0 -98px;
}
.bar-right {
font-size: 15px;
color: #fff;
line-height: 58px;
}
.bar-right .cart {
background-color: #ffe817;
color: #000;
}
.bar-right .buy {
background-color: #f69;
}
</style>
2. Detail.vue
- 引入 DetailBottomBar.vue
- 样式类 detail-scroll-content 高度减去 58px
<template>
<div id="detail">
<detail-nav-bar @titleClick="titleClick" class="detail-nav" ref="nav"/>
<scroll
ref="scroll"
class="detail-scroll-content"
:probe-type="2"
@scroll="contentScroll">
<detail-swiper ref="swiper" :top-images="topImages"/>
<detail-base-info :goods="goods"/>
<detail-shop-info :shop="shop"/>
<detail-goods-info :detail-info="detailInfo" @imageLoad="imageLoad"/>
<detail-param-info ref="param" :param-info="paramInfo"/>
<detail-comment-info ref="comment" :comment-info="commentInfo"/>
<goods-list ref="recommond" :goods="recommends"/>
</scroll>
<detail-bottom-bar />
</div>
</template>
<script>
import DetailNavBar from './childComps/DetailNavBar'
import DetailSwiper from './childComps/DetailSwiper'
import DetailBaseInfo from './childComps/DetailBaseInfo'
import DetailShopInfo from './childComps/DetailShopInfo'
import DetailGoodsInfo from './childComps/DetailGoodsInfo'
import DetailParamInfo from './childComps/DetailParamInfo'
import DetailCommentInfo from './childComps/DetailCommentInfo'
import DetailBottomBar from './childComps/DetailBottomBar'
import Scroll from 'components/common/scroll/Scroll'
import GoodsList from 'components/content/goods/GoodsList'
import {getDetail, getRecommend, Goods, Shop, GoodsParam} from 'network/detail'
import { itemListenerMixin } from 'common/mixin'
export default {
name: 'Detail',
components: {
DetailNavBar,
DetailSwiper,
DetailBaseInfo,
DetailShopInfo,
DetailGoodsInfo,
DetailParamInfo,
DetailCommentInfo,
DetailBottomBar,
Scroll,
GoodsList
},
mixins: [itemListenerMixin],
data() {
return {
iid: null,
topImages: [],
goods: {},
shop: {},
detailInfo: {},
paramInfo: {},
commentInfo: {},
recommends: [],
themeTopYs: [],
currentIndex: 0
}
},
methods: {
getThemeTopYs() {
this.themeTopYs = [
this.$refs.swiper.$el.offsetTop - 44,
this.$refs.param.$el.offsetTop - 44,
this.$refs.comment.$el.offsetTop - 44,
this.$refs.recommond.$el.offsetTop - 44,
Number.MAX_VALUE
]
},
imageLoad() {
this.$refs.scroll.refresh()
this.getThemeTopYs()
},
titleClick(index) {
this.$refs.scroll.scrollTo(0, -this.themeTopYs[index], 200)
},
contentScroll(position) {
// 1. 获取y值
const positionY = -position.y
// 2. positionY和主题中的值进行对比
const len = this.themeTopYs.length
for (let i = 0; i < len - 1; i++) {
if (this.currentIndex !== i && positionY >= this.themeTopYs[i] && positionY < this.themeTopYs[i + 1]) {
this.currentIndex = i
this.$refs.nav.currentIndex = this.currentIndex
}
}
}
},
created() {
// 1. 保存传入的iid
this.iid = this.$route.params.iid
// 2. 根据iid请求详情数据
getDetail(this.iid).then(res => {
const data = res.result
// 1. 获取顶部的图片轮播数据
this.topImages = data.itemInfo.topImages
// 2. 获取商品信息
this.goods = new Goods(data.itemInfo, data.columns, data.shopInfo.services)
// 3. 创建店铺信息的对象
this.shop = new Shop(data.shopInfo)
// 4. 保存商品的详情数据
this.detailInfo = data.detailInfo
// 5. 获取参数的信息
this.paramInfo = new GoodsParam(data.itemParams.info, data.itemParams.rule)
// 6. 取出评论的信息
if (data.rate.cRate !== 0) {
this.commentInfo = data.rate.list[0]
}
// 初始化scroll
this.$nextTick(() => {
this.$refs.scroll.createScroll()
})
})
// 3. 请求推荐数据
getRecommend().then(res => {
this.recommends = res.data.list
})
}
}
</script>
<style scoped>
#detail {
position: relative;
z-index: 9;
background-color: #fff;
height: 100vh;
}
.detail-nav {
position: relative;
z-index: 9;
background-color: #fff;
}
.detail-scroll-content {
height: calc(100% - 44px - 58px);
}
</style>