完善茶艺师套餐功能

This commit is contained in:
wangxiaowei
2026-03-28 19:05:32 +08:00
parent 4729dc5ae8
commit 61d0ca2bd1
8 changed files with 38 additions and 20 deletions

View File

@ -67,11 +67,11 @@
</view>
<view class="package-row px-30rpx pb-30rpx">
<view class="flex flex-wrap justify-between">
<view class="grid grid-cols-3 gap-x-0 gap-y-20rpx">
<view
v-for="(item, idx) in teaPackageList"
:key="item.id || idx"
class="w-216rpx rounded-20rpx pb-20rpx box-border mb-20rpx"
class="w-216rpx rounded-20rpx pb-20rpx box-border"
:style="{
background: idx === 0
? 'linear-gradient( 180deg, #EAFFF9 0%, #F6F7F9 100%)'
@ -556,10 +556,10 @@ page {
.package-row {
width: 100%;
}
.package-row .flex {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.package-row .grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0 0;
}
.package-row .w-216rpx {
margin-right: 0;