flower-mp/pages/garden/components/growth.wxml
2025-12-16 16:05:48 +08:00

32 lines
1.2 KiB
Plaintext

<!--pages/garden/components/growth.wxml-->
<view>
<t-fab icon="heart" bind:click="change" text="记录成长"></t-fab>
<t-popup visible="{{visible}}" bind:visible-change="change" placement="bottom">
<view class="padding">
<view class="text-center">记录生长瞬间</view>
<view class="border mt-32 flex flex-center flex-col">
<view class="flex flex-center flex-col">
<view class="camera flex flex-center">
<t-icon name="camera-filled" class="primary" size="24"></t-icon>
</view>
<view class="mt-32">点击上传或拍摄植物照片</view>
<view class="mt-16 font-12 grey">支持JPG、PNG 格式,最大 5MB</view>
</view>
</view>
<view class="flex flex-center flex-justify-around mt-32 mb-16">
<t-tag>日常</t-tag>
<t-tag>发芽</t-tag>
<t-tag>开花</t-tag>
<t-tag>结果</t-tag>
</view>
<view>
<t-textarea placeholder="写下此刻的心情…"></t-textarea>
</view>
<view class="flex flex-center">
<t-button theme="primary" shape="round" style="width: 80%;">保存记录</t-button>
</view>
</view>
</t-popup>
</view>