62 lines
3.2 KiB
Plaintext
62 lines
3.2 KiB
Plaintext
<view class="{{isIpx?'fui-iphonex-button':''}}"></view>
|
|
<loading wx:if="{{!show}}">加载中...</loading>
|
|
<view class="page {{paddingb}}" style="padding-bottom:4rem" wx:if="{{show}}">
|
|
<view class="category-search">
|
|
<view class="weui-flex">
|
|
<view class="weui-flex__item category-search-form">
|
|
<view class="flex-head-search" id="searchBar">
|
|
<view class="weui-search-bar__form">
|
|
<view class="weui-search-bar__box category-search-box">
|
|
<view class="flex-icon-search">
|
|
<i class="icox icox-search" style="color: #b4b4b4;"></i>
|
|
</view>
|
|
<input bindconfirm="searchlist" class="weui-search-bar__input flex-input" placeholder="输入关键字..." type="text"></input>
|
|
<view bindtap="search" class="searchbar-cancel searchbtn {{showbtn}}" style="top: 0; right: 0">输入关键字...</view>
|
|
<navigator class="weui-icon-clear" id="searchClear" url="javascript:"></navigator>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="fui-cell-group nomargin" id="weixin_wei">
|
|
<view bindtap="chooseAddress" class="fui-cell">
|
|
<span class="fui-cell-text">
|
|
<span class="icon icon-weixin1" style="margin-right: 12rpx;color:#62b900;font-size:40rpx"></span>
|
|
获取微信收货地址</span>
|
|
<span class="fui-cell-remark" style="margin-left: 10rpx;position: relative;top: -1rpx;"></span>
|
|
</view>
|
|
</view>
|
|
<block wx:if="{{list.length>0}}">
|
|
<view class="fui-list-group" wx:for="{{list}}">
|
|
<view class="fui-list address-item">
|
|
<view bindtap="select" class="fui-list-media" data-index="{{index}}">
|
|
<radio checked="{{item.isdefault>0?true:false}}" class="zoom-70" color="#fd5454" name="default"></radio>
|
|
</view>
|
|
<view bindtap="select" class="fui-list-inner" data-index="{{index}}">
|
|
<view class="title">
|
|
<span class="realname">{{item.realname}}</span>
|
|
<span class="mobile">{{item.mobile}}</span>
|
|
</view>
|
|
<view class="text">{{item.province}}{{item.city}}{{item.area}} {{item.address}}</view>
|
|
</view>
|
|
<navigator class="fui-list-angle" hoverClass="none" openType="redirect" url="/pages/member/address/post?id={{item.id}}&type=order">
|
|
<view class="fui-cell-icon">
|
|
<text class="icox icox-icon_huida_tianxiebtn" style="font-size: 48rpx;color: #666;"></text>
|
|
</view>
|
|
</navigator>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<view class="fui-loading empty" wx:if="{{list.length<1&&loaded}}">
|
|
<view class="text">没有数据</view>
|
|
</view>
|
|
<view class="fui-navbar {{iphonexnavbar}}">
|
|
<navigator class="nav-item btn btn-danger" hoverClass="none" openType="redirect" url="/pages/member/address/post?type=order">
|
|
|
|
+
|
|
<text>新增地址</text>
|
|
</navigator>
|
|
</view>
|
|
</view>
|