You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
534 B
Plaintext

2 years ago
<!-- pages/addressPage/index.wxml -->
<view class="pageIn">
<view class="subset" hover-class="none" hover-stop-propagation="false" wx:for='{{addressList}}' wx:key='index'>
<view class="title display-flex fw500">
<view class="iconfont {{item.icon}}" style="color:{{item.color}};margin-left: 10px;"></view>
{{item.name}}
</view>
<view class="navigator display-flex" bindtap='toMap' data-info='{{item}}'>
{{item.addresss ? item.addresss : '-'}}
<view class="iconfont icon-gengduo1"></view>
</view>
</view>
</view>