flower-mp/pages/store/info.wxml
2025-12-09 16:19:58 +08:00

68 lines
2.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--pages/store/info.wxml-->
<view>
<view wx:if="{{info}}" style="padding-bottom: 200rpx;">
<image src="{{info.imgList[0].url}}" style="width: 100vw;" mode="widthFix" data-url="{{info.imgList[0].url}}" bind:tap="goPreview"></image>
<view class=" white-bg flex flex-center flex-justify-between">
<view class="padding">
<view class="font-16 bold">{{info.name}}</view>
<view class="mt-16">
<t-tag>{{info.tag}}</t-tag>
</view>
</view>
<view class="price-tag-badge">
需 {{info.points}} 阳光值
</view>
</view>
<view class=" padding white-bg mt-32" style="margin:32rpx; border-radius: 16rpx;">
<view>🌳 植物公民档案</view>
<view class="mt-16 content-text">{{info.content}}
</view>
</view>
<view class=" padding white-bg mt-32" style="margin:32rpx; border-radius: 16rpx;">
<view>🌳 植物百科</view>
<view class="mt-16 content-text">
<view class="grid">
<view style="width: 100%;background-color: #4B84EE1C;border-radius: 8rpx;text-align: center;padding: 10rpx 0;">🌍 多年生</view>
<view style="width: 100%;background-color: #4B84EE1C;border-radius: 8rpx;text-align: center;padding: 10rpx 0;">🌞 中光照</view>
<view style="width: 100%;background-color: #4B84EE1C;border-radius: 8rpx;text-align: center;padding: 10rpx 0;">易养活</view>
</view>
<view class="font-12 mt-16" style="color: #00000099;">
<view>自然花期4-6月人工栽培可全年开花盛花期12-3月</view>
<view class="mt-16">喜高温多湿半阴环境,不耐寒,怕干旱和强光,忌积水;附生于树干或岩石,根系暴露于空气中吸收水分</view>
</view>
</view>
</view>
<view class=" padding white-bg mt-32" style="margin:32rpx; border-radius: 16rpx;" bind:tap="openVideo">
<view> 🎬 新手种植教程</view>
<view>
<image src="https://res.catter.cn/pub/2025/12/09/20251209111759009.png" style="width: 85vw;" mode="widthFix"></image>
</view>
<view>一分钟教会您,给我一个家</view>
</view>
<!-- <view class=" padding white-bg mt-32" style="margin:32rpx; border-radius: 16rpx;">
<view>社区秀</view>
<view class="grid-3 mt-16">
<view wx:for="{{3}}">
<image style="width: 100%; border-radius: 16rpx;" mode="widthFix" src="https://res.catter.cn/pub/2025/12/09/20251209112042393.png" ></image>
</view>
</view>
</view> -->
</view>
<view class="bottom">
<view class="flex flex-center flex-justify-between" style="padding-bottom: 32rpx;">
<view>我的阳光值 {{points}} </view>
<view>
<t-button theme="primary" shape="round" bind:tap="goOrder">立即领养(付邮)</t-button>
</view>
</view>
</view>
</view>