city-list.wxml 593 字节
<!--pages/index/city-list/city-list.wxml-->
<view class="content">
    <view class='tab_box'>
        <view class="tab_item {{current==0?'active':''}}" data-current='{{0}}' bindtap='chargeTab'>国内</view>
        <view class="tab_item {{current==1?'active':''}}" data-current='{{1}}' bindtap='chargeTab'>国际</view>
    </view>
    <view class="city-box">
        <view wx:for="{{city_picker_list}}" wx:key="index">
            <view class="city-item {{current_city === index?'change-bg':''}}" bindtap="chooseCity" data-index="{{index}}">{{item}}</view>
        </view>
    </view>
</view>