- <!-- 左侧滚动栏 -->
- <view class='under_line'></view>
- <view style='float: left' class='left'>
- <scroll-view scroll-y scroll-with-animation scroll-left="{{scrollLength}}" class='scrollY' style='height: {{winHeight}}px'>
- <view class='all clear'>
- <block wx:key="lists" wx:for="{{lists}}">
- <view bindtap='jumpIndex' data-menuindex='{{index}}'>
- <view class='text-style'>
- <text class="{{indexId==index?'active1':''}}">{{item.title}}</text>
- <text class="{{indexId==index?'active':''}}"></text>
- </view>
- </view>
- </block>
- </view>
- </scroll-view>
- </view>
-
- <view class='lists'>
- <view class='posi' wx:if="{{merchantVoList.length>0}}">
- <view class='posi_logo' wx:for="{{merchantVoList}}" wx:key="index">
- <view>
- <image src='{{item.merchantImgUrl}}'></image>
- </view>
- <view>
- <text>{{item.merchantName}}</text>
- <text>{{item.buildingName}}{{item.floorName}}</text>
- </view>
- <image bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
- </view>
- </view>
- <view class='position' wx:if="{{merchantVoList.length==0}}">
- 暂无数据
- </view>
- </view>
|