问题修复

This commit is contained in:
2025-09-28 19:27:54 +08:00
parent b0425d5331
commit 17dd8a56e5
6 changed files with 57 additions and 16 deletions

View File

@@ -8,7 +8,8 @@
<view class="u-p-l-20">
<view class="shop-name u-line-1">{{shopInfo.shopName||'店铺名称' }}</view>
<view class="u-flex">
<view class="no-buy">暂未开通</view>
<view class="no-buy" v-if="!shopUserInfo.isVip">暂未开通</view>
<view class="has-buy" v-else>已开通</view>
</view>
</view>
</view>
@@ -460,6 +461,15 @@
color: #999;
text-align: center;
}
.has-buy {
margin-top: 12rpx;
padding: 8rpx 22rpx;
border-radius: 50rpx;
background-color: #FFD158;
font-size: 14px;
color: #333;
text-align: center;
}
}
.vip-box {