20 lines
813 B
Plaintext
20 lines
813 B
Plaintext
<!--index.wxml-->
|
|
<view class="flex flex-center flex-col">
|
|
<view wx-if="{{list.length === 0}}" class="flex flex-center flex-col " style="margin-top: 268rpx;" >
|
|
<view class="empty flex flex-center flex-col">
|
|
|
|
</view>
|
|
<view class="mt-16 flex flex-center flex-col">
|
|
<view class="font-16 bold" >暂无植物</view>
|
|
<view class="font-12 grey mt-16">您还没有添加任何植物</view>
|
|
</view>
|
|
<view style="width: 100vw; margin-top: 48rpx; " class="flex flex-center">
|
|
<t-button theme="primary" style="width: 60%;" size="small" shape="round" bind:tap="goAdd">添加您的第一颗植物</t-button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
<view class="font-12 grey mt-16">您添加的植物将全部显示在这里</view>
|
|
</view>
|
|
</view>
|