flower-mp/pages/garden/record.wxml
2025-12-29 17:32:10 +08:00

23 lines
1.0 KiB
Plaintext

<!--pages/garden/record.wxml-->
<view>
<view class="top" style="position: relative; z-index: 2;">
<t-swiper style="width: 100vw;border-radius: 0%;" current="{{current}}" bind:change="change" height="100vh" list="{{picList}}" bind:click="goPreview">
</t-swiper>
</view>
<!-- back -->
<view style="z-index: 999;position: fixed; background-color: #34343482 ; width: 60rpx ; height: 60rpx; border-radius: 30rpx; {{backButtonStyle}}" bind:tap="goBack">
<view class="flex flex-center" style="width: 100%;height: 100%;">
<t-icon name="chevron-left" size="48rpx" style="color: white;"></t-icon>
</view>
</view>
<view style="z-index: 999;position: fixed; bottom: 0rpx; width: 100vw;background-color: #0000003c; padding-bottom: 60rpx;">
<view class="padding white flex flex-center flex-col">
<t-tag shape="round" theme="primary">{{info.tag}}</t-tag>
<view class="font-12 mt-16 bold white" >{{info.createdAtStr}}</view>
<view class="font-16 mt-16 bold white" >{{info.content}}</view>
</view>
</view>
</view>