fix: 修正默认头像

This commit is contained in:
lonewolfyx 2026-03-09 09:26:59 +08:00
parent 4570f38018
commit d72be86f3e
4 changed files with 150 additions and 149 deletions

View File

@ -1,191 +1,192 @@
<template> <template>
<view class="mine-container" :style="{height: `${windowHeight}px`}"> <view :style="{height: `${windowHeight}px`}" class="mine-container">
<!--顶部个人信息栏--> <!--顶部个人信息栏-->
<view class="header-section"> <view class="header-section">
<view class="flex padding justify-between"> <view class="flex padding justify-between">
<view class="flex align-center"> <view class="flex align-center">
<view v-if="!avatar" class="cu-avatar xl round bg-white"> <view v-if="!avatar" class="cu-avatar xl round bg-white">
<view class="iconfont icon-people text-gray icon"></view> <view class="iconfont icon-people text-gray icon"></view>
</view> </view>
<image v-if="avatar" @click="handleToAvatar" :src="avatar" class="cu-avatar xl round" mode="widthFix"> <image v-if="avatar" :src="avatar" class="cu-avatar xl round" mode="widthFix"
</image> @click="handleToAvatar">
<view v-if="!name" @click="handleToLogin" class="login-tip"> </image>
点击登录 <view v-if="!name" class="login-tip" @click="handleToLogin">
</view> 点击登录
<view v-if="name" @click="handleToInfo" class="user-info"> </view>
<view class="u_title"> <view v-if="name" class="user-info" @click="handleToInfo">
用户名{{ name }} <view class="u_title">
用户名{{ name }}
</view>
</view>
</view>
<view class="flex align-center" @click="handleToInfo">
<text>个人信息</text>
<view class="iconfont icon-right"></view>
</view>
</view> </view>
</view>
</view> </view>
<view @click="handleToInfo" class="flex align-center">
<text>个人信息</text> <view class="content-section">
<view class="iconfont icon-right"></view> <view class="mine-actions grid col-4 text-center">
<view class="action-item" @click="handleJiaoLiuQun">
<view class="iconfont icon-friendfill text-pink icon"></view>
<text class="text">交流群</text>
</view>
<view class="action-item" @click="handleBuilding">
<view class="iconfont icon-service text-blue icon"></view>
<text class="text">在线客服</text>
</view>
<view class="action-item" @click="handleBuilding">
<view class="iconfont icon-community text-mauve icon"></view>
<text class="text">反馈社区</text>
</view>
<view class="action-item" @click="handleBuilding">
<view class="iconfont icon-dianzan text-green icon"></view>
<text class="text">点赞我们</text>
</view>
</view>
<view class="menu-list">
<view class="list-cell list-cell-arrow" @click="handleToEditInfo">
<view class="menu-item-box">
<view class="iconfont icon-user menu-icon"></view>
<view>编辑资料</view>
</view>
</view>
<view class="list-cell list-cell-arrow" @click="handleHelp">
<view class="menu-item-box">
<view class="iconfont icon-help menu-icon"></view>
<view>常见问题</view>
</view>
</view>
<view class="list-cell list-cell-arrow" @click="handleAbout">
<view class="menu-item-box">
<view class="iconfont icon-aixin menu-icon"></view>
<view>关于我们</view>
</view>
</view>
<view class="list-cell list-cell-arrow" @click="handleToSetting">
<view class="menu-item-box">
<view class="iconfont icon-setting menu-icon"></view>
<view>应用设置</view>
</view>
</view>
</view>
</view> </view>
</view>
</view> </view>
<view class="content-section">
<view class="mine-actions grid col-4 text-center">
<view class="action-item" @click="handleJiaoLiuQun">
<view class="iconfont icon-friendfill text-pink icon"></view>
<text class="text">交流群</text>
</view>
<view class="action-item" @click="handleBuilding">
<view class="iconfont icon-service text-blue icon"></view>
<text class="text">在线客服</text>
</view>
<view class="action-item" @click="handleBuilding">
<view class="iconfont icon-community text-mauve icon"></view>
<text class="text">反馈社区</text>
</view>
<view class="action-item" @click="handleBuilding">
<view class="iconfont icon-dianzan text-green icon"></view>
<text class="text">点赞我们</text>
</view>
</view>
<view class="menu-list">
<view class="list-cell list-cell-arrow" @click="handleToEditInfo">
<view class="menu-item-box">
<view class="iconfont icon-user menu-icon"></view>
<view>编辑资料</view>
</view>
</view>
<view class="list-cell list-cell-arrow" @click="handleHelp">
<view class="menu-item-box">
<view class="iconfont icon-help menu-icon"></view>
<view>常见问题</view>
</view>
</view>
<view class="list-cell list-cell-arrow" @click="handleAbout">
<view class="menu-item-box">
<view class="iconfont icon-aixin menu-icon"></view>
<view>关于我们</view>
</view>
</view>
<view class="list-cell list-cell-arrow" @click="handleToSetting">
<view class="menu-item-box">
<view class="iconfont icon-setting menu-icon"></view>
<view>应用设置</view>
</view>
</view>
</view>
</view>
</view>
</template> </template>
<script setup> <script setup>
import { useUserStore } from '@/store' import {useUserStore} from '@/store'
import { computed , getCurrentInstance } from "vue" import {computed, getCurrentInstance} from "vue"
const { proxy } = getCurrentInstance() const {proxy} = getCurrentInstance()
const name = useUserStore().name const name = useUserStore().name
const avatar = computed(() => useUserStore().avatar) const avatar = computed(() => useUserStore().avatar)
const windowHeight = computed(() => uni.getSystemInfoSync().windowHeight - 50) const windowHeight = computed(() => uni.getSystemInfoSync().windowHeight - 50)
function handleToInfo() { function handleToInfo() {
proxy.$tab.navigateTo('/pages/mine/info/index') proxy.$tab.navigateTo('/pages/mine/info/index')
} }
function handleToEditInfo() { function handleToEditInfo() {
proxy.$tab.navigateTo('/pages/mine/info/edit') proxy.$tab.navigateTo('/pages/mine/info/edit')
} }
function handleToSetting() { function handleToSetting() {
proxy.$tab.navigateTo('/pages/mine/setting/index') proxy.$tab.navigateTo('/pages/mine/setting/index')
} }
function handleToLogin() { function handleToLogin() {
proxy.$tab.reLaunch('/pages/login') proxy.$tab.reLaunch('/pages/login')
} }
function handleToAvatar() { function handleToAvatar() {
proxy.$modal.showToast('模块建设中~')
// proxy.$tab.navigateTo('/pages/mine/avatar/index')
}
function handleHelp() {
proxy.$modal.showToast('模块建设中~')
// proxy.$tab.navigateTo('/pages/mine/help/index')
}
function handleAbout() {
proxy.$modal.showToast('模块建设中~')
// proxy.$tab.navigateTo('/pages/mine/about/index')
}
function handleJiaoLiuQun() {
proxy.$modal.showToast('模块建设中~')
// proxy.$modal.showToast('QQ133713780()146013835()189091635')
}
function handleBuilding() {
proxy.$modal.showToast('模块建设中~') proxy.$modal.showToast('模块建设中~')
} // proxy.$tab.navigateTo('/pages/mine/avatar/index')
}
function handleHelp() {
proxy.$modal.showToast('模块建设中~')
// proxy.$tab.navigateTo('/pages/mine/help/index')
}
function handleAbout() {
proxy.$modal.showToast('模块建设中~')
// proxy.$tab.navigateTo('/pages/mine/about/index')
}
function handleJiaoLiuQun() {
proxy.$modal.showToast('模块建设中~')
// proxy.$modal.showToast('QQ133713780()146013835()189091635')
}
function handleBuilding() {
proxy.$modal.showToast('模块建设中~')
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
page { page {
background-color: #f5f6f7; background-color: #f5f6f7;
} }
.mine-container { .mine-container {
width: 100%; width: 100%;
height: 100%; height: 100%;
.header-section { .header-section {
padding: 15px 15px 45px 15px; padding: 15px 15px 45px 15px;
background-color: #3c96f3; background-color: #3c96f3;
color: white; color: white;
.login-tip { .login-tip {
font-size: 18px; font-size: 18px;
margin-left: 10px; margin-left: 10px;
}
.cu-avatar {
border: 2px solid #eaeaea;
.icon {
font-size: 40px;
} }
}
.user-info { .cu-avatar {
margin-left: 15px; border: 2px solid #eaeaea;
.u_title { .icon {
font-size: 18px; font-size: 40px;
line-height: 30px; }
}
.user-info {
margin-left: 15px;
.u_title {
font-size: 18px;
line-height: 30px;
}
} }
}
} }
.content-section { .content-section {
position: relative; position: relative;
top: -50px; top: -50px;
.mine-actions { .mine-actions {
margin: 15px 15px; margin: 15px 15px;
padding: 20px 0px; padding: 20px 0px;
border-radius: 8px; border-radius: 8px;
background-color: white; background-color: white;
.action-item { .action-item {
.icon { .icon {
font-size: 28px; font-size: 28px;
} }
.text { .text {
display: block; display: block;
font-size: 13px; font-size: 13px;
margin: 8px 0px; margin: 8px 0px;
} }
}
} }
}
} }
} }
</style> </style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

BIN
static/images/profile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -6,7 +6,7 @@ import constant from '@/utils/constant'
import {isEmpty, isHttp} from "@/utils/validate" import {isEmpty, isHttp} from "@/utils/validate"
import {getInfo, login, logout} from '@/api/login' import {getInfo, login, logout} from '@/api/login'
import {getToken, removeToken, setToken} from '@/utils/auth' import {getToken, removeToken, setToken} from '@/utils/auth'
import defAva from '@/static/images/profile.jpg' import defAva from '@/static/images/profile.png'
const baseUrl = config.baseUrl const baseUrl = config.baseUrl