19 lines
859 B
XML
19 lines
859 B
XML
<!-- index.wxml -->
|
|
<view class="page-body">
|
|
<block wx:if="{{ addresses && addresses.length > 0 }}">
|
|
<block wx:for="{{addresses}}" wx:key="index">
|
|
<t-cell title="{{item.name}} {{item.phone}}" description="{{item.areaText}}" arrow >
|
|
<t-icon class="icon-center title-icon" name="location" slot="left-icon" />
|
|
</t-cell>
|
|
</block>
|
|
<view style="flex: 1" />
|
|
<t-button theme="primary" style="margin: 16rpx" block size="large" bind:tap="goNewAddress" content="新建" />
|
|
</block>
|
|
<block wx:else>
|
|
<t-empty icon="info-circle-filled" description="暂时还没有相关数据哦~~">
|
|
<t-button slot="action" t-class="t-empty__button" theme="primary" bind:tap="goNewAddress">
|
|
添加地址
|
|
</t-button>
|
|
</t-empty>
|
|
</block>
|
|
</view> |