左右联动-左侧点击相应的位置,右侧随之滚动

第一步:npm下载

npm install better-scroll --save

第二步:局部注册(当前组件)

import BScroll from 'better-scroll'

第三步:使用

<template>
  <div>
    <div class="goods">
      <div class="left">
        <ul>
          <li
            class="menu-item"
            v-for="(good, index) in goods"
            :key="index"
            :class="{ current: index === currentIndex }"
            @click="clickMenuItem(index)"
          >
            <span class="text">
              <img class="icon" :src="good.icon" v-if="good.icon" />
              {{ good.name }}
            </span>
          </li>
        </ul>
      </div>
      <div class="right">
        <ul ref="foodsUl">
          <li class="food-list-hook">
            <h1 class="title">{{ goods[0].name }}</h1>
            <ul>
              <div class="food-item">AAAAAAAAAAAAAAAAA</div>
            </ul>
          </li>
          <li class="food-list-hook">
            <h1 class="title">{{ goods[1].name }}</h1>
            <ul>
              <div class="food-item">BBBBBBBBBBBBBBBBB</div>
            </ul>
          </li>
          <li class="food-list-hook">
            <h1 class="title">{{ goods[2].name }}</h1>
            <ul>
              <div class="food-item">CCCCCCCCCCCCCC</div>
            </ul>
          </li>
          <li class="food-list-hook">
            <h1 class="title">{{ goods[3].name }}</h1>
            <ul>
              <div class="food-item">DDDDDDDDDDDDDDD</div>
            </ul>
          </li>
          <li class="food-list-hook">
            <h1 class="title">{{ goods[4].name }}</h1>
            <ul>
              <div class="food-item">EEEEEEEEEEEEEE</div>
            </ul>
          </li>
        </ul>
      </div>
    </div>
  </div>
</template>
<script>
import BScroll from 'better-scroll'
export default {
  data() {
    return {
      scrollY: 0, // 右侧滑动的Y轴坐标 (滑动过程时实时变化)
      tops: [], // 所有右侧分类li的top组成的数组  (列表第一次显示后就不再变化)
      goods: [{ name: 'A' }, { name: 'B' }, { name: 'C' }, { name: 'D' }, { name: 'E' }],
    }
  },
  mounted() {
    this.$nextTick(() => {
      this._initScroll()
      this._initTops()
    })
  },
  computed: {
    // 计算得到当前分类的下标
    currentIndex() {
      // 初始化和相关数据发生了变化时执行
      // 得到条件数据
      const { scrollY, tops } = this
      // 根据条件计算产生一个结果
      const index = tops.findIndex((top, index) => {
        // scrollY>=当前top && scrollY<下一个top
        return scrollY >= top && scrollY < tops[index + 1]
      })
      console.log('根据条件计算产生一个结果', index)
      // 返回结果
      return index
    },
  },
  methods: {
    // 初始化滚动
    _initScroll() {
      // 列表显示之后创建
      new BScroll('.left', {
        click: true,
      })
      this.foodsScroll = new BScroll('.right', {
        probeType: 2, // 因为惯性滑动不会触发
        click: true,
      })

      // 给右侧列表绑定scroll监听
      this.foodsScroll.on('scroll', ({ x, y }) => {
        console.log('scroll', x, y)
        this.scrollY = Math.abs(y)
      })
      // 给右侧列表绑定scroll结束的监听
      this.foodsScroll.on('scrollEnd', ({ x, y }) => {
        console.log('scrollEnd', x, y)
        this.scrollY = Math.abs(y)
      })
    },
    // 初始化tops
    _initTops() {
      // 1. 初始化tops
      const tops = []
      let top = 0
      tops.push(top)
      // 2. 收集
      // 找到所有分类的li
      const lis = this.$refs.foodsUl.getElementsByClassName('food-list-hook')
      Array.prototype.slice.call(lis).forEach(li => {
        top += li.clientHeight
        tops.push(top)
      })

      // 3. 更新数据
      this.tops = tops
      console.log(tops)
    },

    clickMenuItem(index) {
      console.log(index)
      // 使用右侧列表滑动到对应的位置

      // 得到目标位置的scrollY
      const scrollY = this.tops[index]
      // 立即更新scrollY(让点击的分类项成为当前分类)
      this.scrollY = scrollY
      // 平滑滑动右侧列表
      this.foodsScroll.scrollTo(0, -scrollY, 300)
    },
  },
}
</script>
<style lang="scss">
.goods {
  display: flex;
  position: absolute;
  top: 15px;
  bottom: 46px;
  width: 100%;
  background: #fff;
  overflow: hidden;

  .left {
    flex: 0 0 80px;
    width: 200px;
    background: #f3f5f7;

    .menu-item {
      display: table;
      height: 54px;
      width: 200px;
      padding: 0 12px;
      line-height: 14px;

      &.current {
        position: relative;
        z-index: 10;
        margin-top: -1px;
        background: #fff;
        // color: $green;
        font-weight: 700;
      }

      .icon {
        display: inline-block;
        vertical-align: top;
        width: 12px;
        height: 12px;
        margin-right: 2px;
        background-size: 12px 12px;
        background-repeat: no-repeat;
      }

      .text {
        display: table-cell;
        width: 56px;
        vertical-align: middle;
        // bottom-border-1px(rgba(7, 17, 27, 0.1));
        font-size: 16px;
      }
    }
  }

  .right {
    flex: 1;
    .title {
      padding-left: 14px;
      height: 26px;
      line-height: 26px;
      border-left: 2px solid #d9dde1;
      font-size: 16px;
      color: rgb(147, 153, 159);
      background: #f3f5f7;
      text-align: left;
      margin: 0;
    }

    .food-item {
      height: 500px;
      display: flex;
      margin: 18px;
      padding-bottom: 18px;
      // bottom-border-1px(rgba(7, 17, 27, 0.1));

      &:last-child {
        margin-bottom: 0;
      }

      .icon {
        flex: 0 0 57px;
        margin-right: 10px;
      }

      .content {
        flex: 1;
        text-align: left;

        .name {
          margin: 2px 0 8px 0;
          height: 14px;
          line-height: 14px;
          font-size: 16px;
          color: rgb(7, 17, 27);
        }

        .desc,
        .extra {
          line-height: 10px;
          font-size: 16px;
          color: rgb(147, 153, 159);
        }

        .desc {
          line-height: 12px;
          margin-bottom: 8px;
        }

        .extra {
          .count {
            margin-right: 12px;
          }
        }

        .price {
          font-weight: 700;
          line-height: 24px;

          .now {
            margin-right: 8px;
            font-size: 16px;
            color: rgb(240, 20, 20);
          }

          .old {
            text-decoration: line-through;
            font-size: 16px;
            color: rgb(147, 153, 159);
          }
        }
      }
    }
  }
}

li {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}
</style>
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值