You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
2.1 KiB
39 lines
2.1 KiB
<view class='city_box' style='{{styles}}'>
|
|
<view class='city_left'>
|
|
<scroll-view scroll-y style='width:100%;height:85vh;' scroll-with-animation scroll-into-view="{{cityListId}}">
|
|
<view class='city_locate'>
|
|
<view data-types='locate' catchtap='cityTap'>
|
|
<text class='city_locate_title'>自动定位</text>
|
|
<text class='city_locate_text'
|
|
style='color:#33b9ff;'>{{locateCity||'点击定位'}}</text>
|
|
</view>
|
|
<view >
|
|
<text class='city_locate_title' >选择城市</text>
|
|
<text class='city_locate_text' style='{{!locateCity&&"color:#33b9ff;"}}'>{{chooseCity}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class='new_city'>
|
|
<view class='new_city_title'>热门城市</view>
|
|
<view class='new_city_box'>
|
|
<text class='new_city_text' wx:for='{{newcity}}' wx:key='this' data-types='new' catchtap='cityTap'
|
|
data-val='{{item}}'>{{item.cityName}}</text>
|
|
</view>
|
|
</view>
|
|
<view class='city_list_box'>
|
|
<block wx:for='{{citylist}}' wx:key='this' wx:for-item='letterItem' wx:for-index='letterIndex'>
|
|
<view class='city_first_letter' id='{{letterItem.letter}}'>{{letterItem.letter}}</view>
|
|
<text class='city_name' wx:for='{{letterItem.data}}' wx:key='this' data-types='list'
|
|
catchtap='cityTap' data-index='{{index}}' data-val='{{item}}'>{{item.cityName}}</text>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
<view class='city_right' id="rightSortHeight">
|
|
<text class='letter_item' wx:for='{{letter}}' wx:key='this' catchtap='letterTap' data-item='{{item}}'
|
|
bindtouchstart='touchStart' bindtouchmove='touchMove' bindtouchend='touchEnd'>{{item}}</text>
|
|
</view>
|
|
</view>
|
|
<view class='cu-dialog show-dialog' wx:if="{{dialogIsShow && dialongValue!=null}}">
|
|
<text>{{dialongValue}}</text>
|
|
</view>
|