43 lines
1.8 KiB
Plaintext
43 lines
1.8 KiB
Plaintext
<!--pages/index/edit.wxml-->
|
|
<view>
|
|
<view class="padding">
|
|
<view class="row padding">
|
|
<view class="flex flex-center flex-justify-between">
|
|
<view class="flex flex-center flex-justify-start">
|
|
<image src="https://res.catter.cn/pub/2025/09/30/20250930143920286.png" class="pic"></image>
|
|
<view class="padding">
|
|
<view>
|
|
{{info.name}}
|
|
</view>
|
|
<view class="font-12 grey">
|
|
{{info.latinName}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="width: 60rpx;height: 60rpx;" class="flex flex-justify-end flex-center" bind:tap="changeDialog">
|
|
<t-icon name="edit"></t-icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="white-bg mt-32 " style="border-radius: 16rpx;">
|
|
<view style=" padding-top: 16rpx; padding-bottom: 16rpx;">
|
|
<t-cell title="浇水" bordered="{{false}}" hover arrow note="每{{info.farms.wateringCycle}}天"/>
|
|
<t-cell title="施肥" bordered="{{false}}" hover arrow note="每{{info.farms.slowReleaseFertilizerCycle}}天"/>
|
|
<t-cell title="施肥类型" bordered="{{false}}" hover arrow note="水溶肥"/>
|
|
<t-cell title="旋转" bordered="{{false}}" hover arrow note="每{{info.farms.rotationCycle}}天"/>
|
|
<t-cell title="修剪" bordered="{{false}}" hover arrow note="每{{info.farms.pruningCycle}}天"/>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
<view class="flex flex-center">
|
|
<t-button theme="danger" icon="delete" shape="round" style="width: 80%;" variant="outline" bind:tap="del">删除植物</t-button>
|
|
</view>
|
|
|
|
|
|
<t-dialog visible="{{showDialog}}" title="更改名称" confirm-btn="确定" cancel-btn="取消" bind:confirm="update" bind:cancel="changeDialog">
|
|
<t-input borderless clearable slot="content" placeholder="请输入新的名称" bind:change="onInput" />
|
|
</t-dialog>
|
|
|
|
</view> |