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.

35 lines
1.6 KiB

5 years ago
<!--pages/user/address/index.wxml-->
<view>
<title-header title="收货地址"></title-header>
<view class="address-item" wx:for="{{list}}" wx:key="{{index}}" bindtap="selectItem" data-item="{{item}}">
<view class="address-item-top">
<view class="address-item-top-one">
5 years ago
<text style="font-size:30rpx">{{item.name}}</text>
<text style="font-size:28rpx">{{item.tel}}</text>
5 years ago
</view>
5 years ago
<view class="address">{{item.address}}</view>
5 years ago
</view>
<view class="address-oprations">
5 years ago
<view class="address-oprations" catchtap="setDefault" data-item="{{item}}">
5 years ago
<icon class="iconfont {{item.is_default=='0'?'icon-quan':'icon-gou'}}"></icon>
5 years ago
<text>默认收货地址</text>
</view>
<view class="address-oprations">
<view class="address-opration">
<icon class="iconfont icon-bianji"></icon>
5 years ago
<text catchtap="add" data-id="{{item.id}}" >编辑</text>
5 years ago
</view>
<view class="address-opration">
<icon class="iconfont icon-shanchu"></icon>
5 years ago
<text catchtap="del" data-id="{{item.id}}" data-index="{{index}}">删除</text>
5 years ago
</view>
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
<image lazy-load mode="widthFix" src="https://trip-1302104628.cos.ap-nanjing.myqcloud.com/1798833b-b97b-4caf-a9e9-0fc6d8315903.png"></image>
5 years ago
<view>暂无收货地址</view>
</view>
<view class="btn" bindtap="add" style="{{list.length==0?'position:absolute;bottom:'+(safeBottom + 40)+'rpx':''}}">新增收货地址</view>
<view style="height:{{safeBottom}}rpx"></view>
</view>