处理分享后的兼容问题

This commit is contained in:
kron
2025-11-04 16:49:56 +08:00
parent 3f6d8cb821
commit c7ebeaac36
5 changed files with 312 additions and 36 deletions

View File

@@ -332,9 +332,12 @@ onShareTimeline(() => {
<view class="title" v-if="user.id">
<image src="../static/point-book-title2.png" mode="widthFix" />
</view>
<block v-for="item in list" :key="item.id">
<block v-for="(item, index) in list" :key="item.id">
<PointRecord :data="item" :onRemove="onRemoveRecord" />
<view :style="{ height: '25rpx' }"></view>
<view
v-if="index < list.length - 1"
:style="{ height: '25rpx' }"
></view>
</block>
<view
class="see-more"