This commit is contained in:
kron
2026-01-12 10:09:36 +08:00
parent 88fbc93d97
commit 121d0e36f3
7 changed files with 22 additions and 18 deletions

View File

@@ -59,11 +59,7 @@ const shareImage = async () => {
<view>
<image src="../static/point-champion.png" mode="widthFix" />
<image
:src="
list[0] && list[0].avatar
? list[0].avatar
: '../static/user-icon.png'
"
:src="list[0] && list[0].avatar ? list[0].avatar : ''"
mode="widthFix"
/>
</view>
@@ -78,7 +74,11 @@ const shareImage = async () => {
<text>本周箭数</text>
<text>消耗</text>
</view>
<view class="data-list" :style="{ marginBottom: '20rpx' }" v-if="user.id && mine">
<view
class="data-list"
:style="{ marginBottom: '20rpx' }"
v-if="user.id && mine"
>
<PointRankItem :data="mine" :borderWidth="0" />
</view>
<view