feat: ip 位置调整

This commit is contained in:
2026-06-12 16:01:47 +08:00
parent 395ed154b2
commit 74cdf80b76
2 changed files with 8 additions and 3 deletions

View File

@@ -13,7 +13,7 @@
<image class="w-full block" :src="mainPageDataModel?.initPageImages?.backgroundImageUrl"
mode="aspectFill" style="height: 252px;" />
<view class="absolute bottom-0 left-0 right-0 flex-full">
<view class="px-12 pt-12">
<view class="px-12 pt-12" style="margin-bottom: -1.5px;">
<HomeWelcome :mainPageDataModel="mainPageDataModel" />
</view>
<view style="margin-bottom: -1px;">

View File

@@ -9,7 +9,7 @@
<NoticeMessage :tipsMessage="props.mainPageDataModel.tipsMessage" />
</view>
<SpriteAnimator :src="spriteStyle.ipLargeImage" :frameWidth="spriteStyle.frameWidth"
<SpriteAnimator class="sprite-self-end" :src="spriteStyle.ipLargeImage" :frameWidth="spriteStyle.frameWidth"
:frameHeight="spriteStyle.frameHeight" :totalFrames="spriteStyle.totalFrames" :columns="spriteStyle.columns"
:displayWidth="spriteStyle.displayWidth" :fps="16" />
</view>
@@ -150,4 +150,9 @@ const weatherTextMap = {
</script>
<style scoped></style>
<style scoped>
.sprite-self-end {
align-self: flex-end;
flex-shrink: 0;
}
</style>