uni-app中实现左侧导航栏效果

HTML:

 1  <view class="list">
 2       
 3       <scroll-view class="list-left" scroll-y :style="'height:'+height+'px'">
 4             <view v-if="dataList.length>0" class="list-nav" @click="categoryClickMain(item.id,index)" :key="item.id" :class="index==categoryActive?'active':''" 
 5              v-for="(item,index) in dataList">
 6               {{item.deptName}}
 7             view>
 8       scroll-view>
 9       
10       <scroll-view class="list-right" scroll-y :scroll-top="scrollTop" @scroll="scroll" :style="'height:'+height+'px'" scroll-with-animation>
11           <view class="right-nav" @tap="openOrder">
12               {{rightView.deptName}}
13           view>
14       scroll-view>
15  view>

JavaScript:


                    
                    

你可能感兴趣的:(uni-app中实现左侧导航栏效果)