36 lines
1.6 KiB
Plaintext
36 lines
1.6 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" wx:if="{{pic.length === 0}}" bind:tap="upload">
|
|
<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 wx:else class="flex flex-center full-width">
|
|
<image src="{{pic}}" mode="aspectFill" style="height: 398rpx;padding: 0rpx; border-radius: 16rpx; width: 100%;"></image>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="flex flex-center flex-justify-around mt-32 mb-16">
|
|
<t-check-tag shape="round" theme="primary" variant="outline" wx:for="{{tags}}" data-index="{{index}}" bind:tap="check" checked="{{item.checked}}" content="{{item.label}}"></t-check-tag>
|
|
</view>
|
|
<view>
|
|
<t-textarea bind:change="input" value="{{form.content}}" placeholder="写下此刻的心情…"></t-textarea>
|
|
</view>
|
|
|
|
<view class="flex flex-center">
|
|
<t-button theme="primary" shape="round" style="width: 80%;" bind:tap="submit">保存记录</t-button>
|
|
</view>
|
|
</view>
|
|
</t-popup>
|
|
</view> |