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.
17 lines
802 B
17 lines
802 B
<view class="page"> |
|
<view class="card" wx:for="{{list}}" wx:key="index"> |
|
<view class="wrap" bind:tap="handleSelect" data-index="{{index}}"> |
|
<view class="title"> |
|
<view class="label" wx:if="{{item.isDefault==1}}">默认</view> |
|
<view class="name">{{item.provinceName}}{{item.cityName}}{{item.countyName}}{{item.address}}</view> |
|
</view> |
|
<view class="content">{{item.receiveUserName}} {{item.receiveTelephone}}</view> |
|
</view> |
|
<view class="edit" bind:tap="handleEdit" data-id="{{item.addressId}}"> |
|
<image class="edit-img" src="{{imageUrl}}za-images/2/edit.png?t={{Timestamp}}"></image> |
|
</view> |
|
</view> |
|
<pagination pagination="{{pagination}}"></pagination> |
|
|
|
<view class="submit" bind:tap="handleAdd">新增地址</view> |
|
</view>
|
|
|