uni-app之商城分类导航系统
效果:

<template>
<view class="productClass row" :style="productClassStyle">
<loading :isShow="isLoadingShow"></loading>
<!-- 左侧一级分类列表 -->
<scroll-view class="leftClassList col-3 h-100" scroll-y :scroll-top="primaryScrollTop">
<view class="leftClassItem" v-for="(item,index) in leftClassData" :key="index">
<view :class="currentIndex===index?'selectClassItem':''" @tap="selectClassTap(index)">{
{
item.primary_name}}</view>
</view>
</scroll-view>
<!-- 右侧二级分类列表 -->
<scroll-view class="rightClassList col-9 h-100" scroll-with-animation scroll-y :scroll-top="scrollTop" @scroll="rightScroll">
<view v-for="(item,index) in rightClassData" :key="index" class="rightClassBox" :style="{'min-height':rightUsableHeight}">
<view class="row">
<view class="col-12-percent text-center font-bold">{
{
item.primaryName}}</view>
<view v-for="(item1,index1) in item.list" :key="index1" class="rightClassItem h-auto col-4-percent dis-flex align-center">
<image :src="item1.cover"></image>
<view>

最低0.47元/天 解锁文章
674

被折叠的 条评论
为什么被折叠?



