Browse Source

完成位置授权逻辑迁移和收藏页面优化

pull/1/head
徐飞洋 3 months ago
parent
commit
bfca46766c
  1. 7
      pages/favorites/index.wxml

7
pages/favorites/index.wxml

@ -14,7 +14,7 @@
</view>
<!-- 收藏列表 -->
<view wx:else class="goods-list" style="width: 100%; display: flex; flex-direction: column; align-items: flex-start; min-height: 400rpx;">
<view wx:else class="goods-list" style="width: 100%; display: flex; flex-direction: column; align-items: flex-start;">
<view wx:for="{{favoritesList}}" wx:key="productId" class="card" style="width: 100%; margin-top: 0; margin-bottom: 20rpx;">
<!-- 图片和信息2:3比例并排显示,整体高度固定 -->
<view style="display: flex; width: 100%; height: 200rpx; border-radius: 8rpx; overflow: hidden; background-color: #f5f5f5;">
@ -79,6 +79,11 @@
</view>
</view>
</view>
<!-- 已展示全部收藏提示 -->
<view class="all-shown-tip" style="width: 100%; display: flex; justify-content: center; align-items: center; padding: 40rpx 0; color: #999; font-size: 26rpx; text-align: center;">
已展示全部收藏
</view>
</view>
</view>

Loading…
Cancel
Save