| 1234567891011121314151617181920212223242526272829 |
- <scroll-view scrool-y='true'>
- <scroll-view scroll-y = "true" style="height:1200rpx;">
- <view class="nav_left">
- <block wx:for="{{NormData}}">
- <view class="nav_left_items {{curName == item.typeName ? 'active' : ''}}" bindtap="switchRightTab" data-itemname="{{item.typeName}}" data-typedata='{{item.typedata}}'>{{item.typeName}}</view>
- </block>
- </view>
- </scroll-view>
- <view class="nav_right">
- <scroll-view scroll-y = "true" style="height:1200rpx;">
- <!--暂无数据 -->
- <view wx:if='{{navRightItems.length == 0}}' class='nodata_view'>
- <view><image class='nodata_style' src='../../img/common_nodata.png'></image></view>
- <!-- <view style='font-size:30rpx;text-align:top;'>暂无菜品</view> -->
- </view>
- <block wx:for='{{navRightItems}}'>
- <button class='nav_right_items' bindtap="itemClick" data-item='{{item}}'>{{item.normItem}}({{item.normScore}})</button>
- <!-- <view class='commonhline' style='height:3rpx;'></view> -->
- </block>
- </scroll-view>
- </view>
- </scroll-view>
-
|