| 12345678910111213141516171819202122232425262728 |
- <swiper class="screen-swiper round-dot" indicator-dots="true" circular="true" autoplay="true" interval="5000" duration="500">
- <swiper-item wx:for="{{advertises}}" wx:key wx:for-item="advertise" bindtap="NavigetClick" data-navigate="{{advertise.navigate}}">
- <image src="{{advertise.url}}" mode='aspectFill'></image>
- </swiper-item>
- </swiper>
- <view class="VerticalBox">
- <scroll-view class="VerticalNav nav" scroll-y scroll-with-animation scroll-top="{{VerticalNavTop}}" style="height:calc(100vh - 375rpx)">
- <view class="cu-item {{index==TabCur?'text-green cur':''}}" wx:for="{{list}}" wx:key bindtap='tabSelect' data-id="{{index}}">
- {{item.name}}
- </view>
- </scroll-view>
- <scroll-view class="VerticalMain" scroll-y scroll-with-animation style="height:calc(100vh - 375rpx)" scroll-into-view="main-{{MainCur}}" bindscroll="VerticalMain">
- <view class="padding-top padding-left" wx:for="{{list}}" wx:key id="main-{{index}}" wx:for-item="province">
- <view class='cu-bar solid-bottom bg-white'>
- <view class='action'>
- <text class='cuIcon-title text-green'></text> {{province.name}} </view>
- </view>
- <view class="action bg-white"
- bindtap="CityClick"
- data-province="{{province.name}}"
- data-city-name="{{item}}"
- wx:key
- wx:for="{{base['0,'+province.code]}}">
- <view class="city-list solid-bottom">{{item}}</view>
- </view>
- </view>
- </scroll-view>
- </view>
|