| 12345678910111213141516171819202122232425262728293031 | <nav type="back" title="选择地址" background-color="{{activeColor ? activeColor : '#00b26a'}}" front-color="{{titleColor ? titleColor : '#ffffff'}}"></nav><view class="containers">    <view class='has-info' wx:if="{{addresses.length > 0}}">        <view bindtap="{{type == 0?'goAddressDetail':'selectAddress'}}" class='info-item' data-address="{{item}}" data-addressid="{{item.id}}" wx:for="{{addresses}}" wx:key="id">            <view class="selected" wx:if="{{type == 1}}">                <image wx:if="{{item.id == nowAddress}}" class="img" src="https://file-cloud.fmode.cn/gou-red.png"></image>                <image wx:else class="img" src="https://file-cloud.fmode.cn/gou-gray.png"></image>            </view>            <view class="info-wrap">                <view class="addr">                    <view class="top">{{item.address}}</view>                    <view class="text">{{item.full_region}}</view>                </view>                <view class="name">                    <view class="text">{{item.name}} {{item.mobile}}</view>                    <view class="default" wx:if="{{item.is_default}}">默认</view>                </view>            </view>            <view class="edit-wrap" data-addressid="{{item.id}}" catchtap='goAddressDetail'>                <image class="img" src="https://file-cloud.fmode.cn/edit.png"></image>            </view>        </view>    </view>    <view class="no-info" wx:else>        <image src="https://file-cloud.fmode.cn/position-deny.png" class="img"></image>        <view class="text">没有地址信息</view>    </view>    <view class="btn-wrap" bindtap="addAddress">        <view class="btn" style="background:{{activeColor ? activeColor : 'linear-gradient(to right, #00b26a, #e6c006)'}};color: {{titleColor ? titleColor : '#ffffff'}}">新增收货地址</view>    </view></view>
 |