| 123456789101112131415161718192021 | <view class="cate_container">    <scroll-view class="left_menu" scroll-y>        <view class="left_content">            <block wx:for="{{categorys}}" wx:key="index" wx:for-item="info">                <view class="left_item {{activeItem == index ?'active':''}}" data-id="{{info.objectId}}" data-index="{{index}}" bind:tap="changeCate">                    {{info.name}}                </view>            </block>        </view>    </scroll-view>    <scroll-view class="right_menu" scroll-y>        <view class="right_content">            <block wx:for="{{goods}}" wx:key="index">                <view class="right_item" data-url="/nova-shop/pages/shop-goods/goods-detail/index?id={{item.objectId}}" bind:tap="goNovaURL">                    <image class="image" src="{{item.image}}" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload="" />                    <view class="name">{{item.name}}</view>                </view>            </block>        </view>    </scroll-view></view>
 |