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
35 lines
1.6 KiB
<!--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">
|
|
<text style="font-size:30rpx">{{item.name}}</text>
|
|
<text style="font-size:28rpx">{{item.tel}}</text>
|
|
</view>
|
|
<view class="address">{{item.address}}</view>
|
|
</view>
|
|
<view class="address-oprations">
|
|
<view class="address-oprations" catchtap="setDefault" data-item="{{item}}">
|
|
<icon class="iconfont {{item.is_default=='0'?'icon-quan':'icon-gou'}}"></icon>
|
|
<text>默认收货地址</text>
|
|
</view>
|
|
<view class="address-oprations">
|
|
<view class="address-opration">
|
|
<icon class="iconfont icon-bianji"></icon>
|
|
<text catchtap="add" data-id="{{item.id}}" >编辑</text>
|
|
</view>
|
|
<view class="address-opration">
|
|
<icon class="iconfont icon-shanchu"></icon>
|
|
<text catchtap="del" data-id="{{item.id}}" data-index="{{index}}">删除</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
|
|
<image mode="widthFix" src="https://trip-1302104628.cos.ap-nanjing.myqcloud.com/1798833b-b97b-4caf-a9e9-0fc6d8315903.png"></image>
|
|
<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>
|