微信小程序分类:右侧商品滑动时,左侧分类导航栏的相应分类被选中

<view class="spread-cateBox">
  <!-- <view> -->
    <scroll-view scroll-y scroll-with-animation scroll-left="{{scrollLength}}" class='spread-cateLeft' style='height: {{winHeight}}px'>
      <block wx:for="{{tabs}}" wx:key="index">
        <view bindtap='jumpIndex' data-menuindex='{{index}}' data-anchor='{{item.anchor}}'>
          <view class="spread-cateLItem {{currentIndex==index?' bg-fff':''}}">
            <text class="{{currentIndex==index?'c-theme':''}}">{{item.title}}</text>
          </view>
        </view>
      </block>
    </scroll-view>
  <!-- </view> -->
  <!-- <view style='height: {{winHeight}}px'> -->
    <scroll-view scroll-y scroll-with-animation scroll-left="{{scrollLength}}" bindscroll="scrollToLeft" scroll-into-view="{{toTitle}}" style='height: {{winHeight}}px'>
      <block wx:key="tabs" wx:for="{{tabs}}">
        <view id="view-{{item.anchor}}">
          <view class="title" id="title-{{item.anchor}}">{{item.title}}</view>
          <block wx:for="{{tabsList[item.anchor]}}" wx:key="index">
            <view class="flex-start good-item">
              <image class="good-img" src="{{imgUrls + 'default.png'}}"></image>
              <view class="flex-between good-name">
                <view>这是商品名称</view>
                <view>月售122</view>
                <view>¥19.9</view>
              </view>
            </view>
          </block>
        </view>
      </block>
    </scroll-view>
  <!-- </view> -->
</view>

const apis = require('../../config');
Page({
  data: {
    imgUrls: apis.configUrl.imgUrls,
    tabs: [{
        title: '特惠',
        anchor: 'a',
      },
      {
        title: '必点',
        anchor: 'b',
      },
      {
        title: '营养汤',
        anchor: 'c',
      },
      {
        title: '主食',
        anchor: 'd',
      },
      {
        title: '套餐',
        anchor: 'e',
      },
      {
        title: '饮料',
        anchor: 'f',
      },
    ],
    tabsList: {
      a: [{
          price: 10.1,
          anchor: "a",
          index: 0,
          num: 0
        }, {
          price: 10.2,
          anchor: "a",
          index: 1,
          num: 0
        },
        {
          price: 10.3,
          anchor: "a",
          index: 2,
          num: 0
        },
      ],
      b: [{
          price: 10.4,
          anchor: "b",
          index: 0,
          num: 0
        }, {
          price: 10.5,
          anchor: "b",
          index: 1,
          num: 0
        },
        {
          price: 10.6,
          anchor: "b",
          index: 2,
          num: 0
        },
      ],
      c: [{
          price: 10.7,
          anchor: "c",
          index: 0,
          num: 0
        }, {
          price: 10.8,
          anchor: "c",
          index: 1,
          num: 0
        },
        {
          price: 10.9,
          anchor: "c",
          index: 2,
          num: 0
        },
      ],
      d: [{
          price: 11.0,
          anchor: "d",
          index: 0,
          num: 0
        }, {
          price: 11.1,
          anchor: "d",
          index: 1,
          num: 0
        },
        {
          price: 11.2,
          anchor: "d",
          index: 2,
          num: 0
        },
      ],
      e: [{
          price: 11.3,
          anchor: "e",
          index: 0,
          num: 0
        }, {
          price: 11.4,
          anchor: "e",
          index: 1,
          num: 0
        },
        {
          price: 11.5,
          anchor: "e",
          index: 2,
          num: 0
        },
      ],
      f: [{
          price: 11.6,
          anchor: "f",
          index: 0,
          num: 0
        }, {
          price: 11.7,
          anchor: "f",
          index: 1,
          num: 0
        },
        {
          price: 11.8,
          anchor: "f",
          index: 2,
          num: 0
        },
      ]
    },
    currentIndex: 0, // 当前选中的下标
    toTitle: "title-c",
    scrollTop: 0,
    top: [],
  },
  // 左侧点击事件
  jumpIndex(e) {
    let index = e.currentTarget.dataset.menuindex;
    let anchor = e.currentTarget.dataset.anchor;

    this.setData({
      currentIndex: index,
      toTitle: "title-" + anchor
    });
  },

  scrollToLeft(e) {
    this.setData({
      scrollTop: e.detail.scrollTop
    })
    var length = this.data.top.length;
    for (var i = 0; i < this.data.top.length; i++) {
      if (this.data.top[i] - this.data.top[0] <= this.data.scrollTop && (i < length - 1 && this.data.top[i + 1] - this.data.top[0] > this.data.scrollTop)) {
        if (this.data.currentIndex != i) {
          this.setData({
            currentIndex: i,
          });
        }
      }
    }
  },

  onLoad: function (options) {
    var that = this
    wx.getSystemInfo({
      success: function (res) {
        that.setData({
          winHeight: res.windowHeight
        });
        var top2 = new Array();
        for (var i = 0; i < that.data.tabs.length; i++) {
          wx.createSelectorQuery().select('#view-' + that.data.tabs[i].anchor).boundingClientRect(function (rect) {
            var isTop = Number(rect.top);
            top2.push(isTop);
          }).exec();
        }
        that.setData({
          top: top2
        });
      }
    });
  },
})
::-webkit-scrollbar {
  width: 0;
  height: 0;
  color: transparent;
}

.spread-cateBox {
  display: flex;
  width: 100%;
}

.spread-cateLeft {
  width: 200rpx;
}

.spread-cateLItem {
  width: 200rpx;
  height: 100rpx;
  line-height: 100rpx;
  text-align: center;
  font-size: 28rpx;
}


.title {
  height: 60rpx;
  line-height: 60rpx;
  font-size: 28rpx;
}

.good-item{
  margin-bottom: 10rpx;
}

.good-img{
  width: 210rpx;
  height: 210rpx;
}

.good-name{
  flex-direction: column;
  align-items: flex-start;
  height: 210rpx;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值