123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <template>
- <view class="category">
- <view class="category-wrapper" v-if="fetch.cate.length>0">
- <!-- 左边导航 -->
- <scroll-view scroll-y="true" class="left-wrapper" scroll-with-animation="true" :scroll-top="left_scroll">
- <view class="left-content">
- <view class="title-content" :class="select_index === k?'onSelected':''" v-for="(v,k) in fetch.cate" :key="k" @tap="choose(k)">{{v.name}}</view>
- </view>
- </scroll-view>
- <!-- 右边内容 -->
- <scroll-view scroll-y="true" class="right-wrapper" scroll-with-animation="true" :scroll-top="right_scroll" @scroll="myscroll">
- <view class="right-content">
- <!-- banner区域 -->
- <view class="banner-wrapper" v-if="swiperList.length > 0">
- <swiper class="swiper-content" :autoplay="true" :interval="3000" :circular="true">
- <swiper-item class="swiper-item" v-for="imgs in swiperList" :key="imgs.id">
- <image class="swiper-img" :src="imgs.src"></image>
- </swiper-item>
- </swiper>
- </view>
- <!-- 产品区 -->
- <view class="product-wrapper">
- <view class="category-item" :id="'list'+k" v-for="(v,k) in fetch.child" :key="k" v-if="v.show == 1">
- <view class="category-title">{{v.name}}</view>
- <view class="category-content">
- <view class="product-item" v-for="(v1,k1) in v.content" :key="k1">
- <image class="product-img" :src="v1.pic"></image>
- <text class="product-title">{{v1.cname}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- fetch: {
- cate : []
- },
- windows_height: 0, //屏幕高度
- swiperList: [],
- catrgoryList: [],
- select_index: 0,
- right_height: [], //右侧每个内容的高度集合
- right_scroll: 0, //右侧的滑动值
- left_height: 0, //左侧总高度
- left_scroll: 0, //左侧滑动值
- last: 0,
- }
- },
- onLoad(option) {
- this.id = option.id;
- this.getData();
- this.windows_height = uni.getSystemInfoSync().windowHeight;
- },
- methods: {
- getData : function() {
- this.Dever.get(this, 'app/collection/?l=api.category', {id:this.id});
- },
- init : function() {
- uni.request({
- url: 'https://www.easy-mock.com/mock/5d351e87b5e1f213739d6498/shop/categoryList', //仅为示例,并非真实接口地址。
- method: 'GET',
- success: (res) => {
- if (res.data.error === 0) {
- this.catrgoryList = res.data.data.list;
- this.swiperList = res.data.data.banner;
- this.$nextTick(() => {
- this.getHeightList();
- })
- }
- }
- });
- },
- getHeightList : function() {
- let _this = this;
- let selectorQuery = uni.createSelectorQuery();
- selectorQuery.select('.left-content').boundingClientRect(function(rects) {
- _this.left_height = rects.height;
- });
- selectorQuery.selectAll('.category-item').boundingClientRect(function(rects) {
- _this.right_height = rects.map((item) => item.top);
- console.log(_this.right_height)
- }).exec();
- },
- choose : function(index) {
- if (this.select_index === index) {
- return;
- }
- this.select_index = index;
- // 加入防抖
- if (this.timeout) {
- clearTimeout(this.timeout); //清除计时器
- }
- this.timeout = setTimeout(() => {
- this.right_scroll = this.right_height[index] - 110;
- }, 300)
- },
- myscroll : function(e) {
- //引入节流
- let right_content_height = e.detail.scrollHeight - this.windows_height;
- if (right_content_height == e.detail.scrollTop) {
- return;
- }
- let scroll_top = e.detail.scrollTop + 110; //110是banner图的高度
- //判断当前的scrollTop在哪个区间内;
- let now = +new Date();
- if (now - this.last > 100) {
- this.last = now;
- let active_index = this.right_height.findIndex((value, index, arr) => value <= scroll_top && scroll_top < arr[index + 1]);
- this.select_index = active_index;
- if (this.left_height - this.windows_height) {
- //如果有超出部分
- let diff = this.left_height - this.windows_height
- this.left_scroll = Math.round((active_index * diff) / (this.catrgoryList.length - 1))
- }
- }
- }
- }
- }
- </script>
- <style lang="less">
- .category {
- .category-wrapper {
- width: 100%;
- display: flex;
- flex-direction: row;
- position: absolute;
- top: 0;
- bottom: 0;
- .left-wrapper {
- width: 200rpx;
- flex: 0 0 200rpx;
- background-color: #f6f6f6;
- .left-content {
- .title-content {
- width: 100%;
- height: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 25rpx;
- border-bottom: 1px solid #dedede;
- cursor: pointer;
- &:last-child {
- border-bottom: 0;
- }
- &.onSelected {
- background-color: #fff;
- position: relative;
- color: #feb436;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 10rpx;
- height: 100%;
- background: linear-gradient(124deg, #feb436 0%, #fb7c22 100%);
- }
- }
- }
- }
- }
- .right-wrapper {
- flex: 1;
- .right-content {
- width: 100%;
- padding: 20rpx 0;
- border-left: 1rpx solid #efefef;
- box-sizing: border-box;
- .banner-wrapper {
- padding: 0 20rpx;
- .swiper-content {
- width: 100%;
- height: 180rpx;
- margin-bottom: 20rpx;
- .swiper-item {
- .swiper-img {
- width: 100%;
- height: 180rpx;
- }
- }
- }
- }
- .product-wrapper {
- .category-item {
- .category-title {
- height: 60rpx;
- font-size: 26rpx;
- line-height: 60rpx;
- font-weight: 500;
- background-color: #f6f6f6;
- padding-left: 20rpx;
- color: #000;
- }
- .category-content {
- display: flex;
- flex-direction: row;
- flex-flow: wrap;
- padding: 20rpx 20rpx 0;
- .product-item {
- width: 33%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin-bottom: 20rpx;
- .product-img {
- width: 120rpx;
- height: 140rpx;
- margin-bottom: 10rpx;
- }
- .product-title {
- font-size: 23rpx;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- </style>
|