纸通宝小程序
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.
 

27 lines
1.1 KiB

<!--pages/adress/list/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">收货地址</view>
</cu-custom>
<view class="cu-list menu-avatar">
<view class="cu-item" style="border-bottom:2rpx solid #eee" wx:for="{{adressList}}" wx:key="index" data-index="{{index}}" bindtap="lookItem">
<view class="divLeft10rpx" style="padding-left:24rpx">
<view class="text-black">{{item.receiver}} <text class="font-size14">{{item.phone}} </text><text wx:if="{{item.isDefault==1}}" class="font-size14">默认</text></view>
<view class="text-gray text-sm flex">
<text class="text-cut">
<text>{{item.provinceName}}</text>
<text>{{item.cityName}}</text>
<text>{{item.districtName}}</text>
<text>{{item.details}}</text>
</text>
</view>
</view>
<view class="action" data-index="{{index}}" catchtap="toEdit">
<view class="text-blue text-sm" style="line-height: 64rpx;height: 64rpx;">编辑</view>
</view>
</view>
</view>
<view style="padding:24rpx">
<wux-button block type="positive" bind:click="toCreate">新增地址</wux-button>
</view>