优化会员信息模块及首页组件,清理冗余图片资源

This commit is contained in:
future
2026-06-07 22:41:55 +08:00
parent be7eabdbb1
commit 51bdf15613
111 changed files with 667 additions and 523 deletions
@@ -6,12 +6,12 @@
<view class="profile-header__nav-left">
<image
class="profile-header__icon-bell"
src="/static/images/bell.png"
src="https://gymfuture.oss-cn-chengdu.aliyuncs.com/static/images/bell.png"
mode="aspectFit"
/>
<image
class="profile-header__icon-settings"
src="/static/images/settings.png"
src="https://gymfuture.oss-cn-chengdu.aliyuncs.com/static/images/settings.png"
mode="aspectFit"
/>
</view>
@@ -37,7 +37,7 @@
<view class="profile-header__avatar-badge">
<image
class="profile-header__avatar-badge-icon"
src="/static/images/camera.png"
src="https://gymfuture.oss-cn-chengdu.aliyuncs.com/static/images/camera.png"
mode="aspectFit"
/>
</view>
@@ -49,7 +49,7 @@
<view class="profile-header__badge">
<image
class="profile-header__badge-icon"
src="/static/images/crown0.png"
src="https://gymfuture.oss-cn-chengdu.aliyuncs.com/static/images/crown0.png"
mode="aspectFit"
/>
<text class="profile-header__level">{{ userInfo.memberLevel }}</text>
@@ -100,7 +100,7 @@ export default {
emits: ['user-info'],
computed: {
displayAvatar() {
return this.userInfo.avatar || '/static/images/AvatarEditWrap.png'
return this.userInfo.avatar || 'https://gymfuture.oss-cn-chengdu.aliyuncs.com/static/images/AvatarEditWrap.png'
}
},
data() {