| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547 |
- <template>
- <!-- 基本信息组件 -->
- <BasicInfo v-if="showBasicInfo" @back="handleBackToMain" />
-
- <!-- 我的主页 -->
- <view v-else class="my-page">
- <!-- 自定义头部 -->
- <view class="custom-header" :style="{ paddingTop: statusBarHeight + 'px' }">
- <view class="header-content">
- <text class="header-title">{{ t('common.mine.title') }}</text>
- </view>
- </view>
-
- <!-- 页面内容 -->
- <view class="page-body">
- <!-- 用户名片区域 -->
- <view class="user-card">
- <image
- class="avatar"
- :src="userInfo.avatar"
- mode="aspectFill"
- :class="{ loading: loading }"
- @error="handleAvatarError"
- />
- <text class="nickname" :class="{ loading: loading }">{{ displayNickname }}</text>
- </view>
-
- <!-- 功能列表 -->
- <view class="function-list">
- <!-- 基本信息 -->
- <view class="list-item" @click="handleBasicInfo">
- <view class="item-left">
- <image class="item-icon" src="/static/pages-content/my/info.png" mode="aspectFit" />
- <text class="item-label">{{ t('common.mine.basicInfo') }}</text>
- </view>
- <text class="item-arrow">›</text>
- </view>
-
- <!-- 文件管理 -->
- <view class="list-item" @click="handleFileManage">
- <view class="item-left">
- <image class="item-icon" src="/static/pages-content/my/file.png" mode="aspectFit" />
- <text class="item-label">{{ t('common.mine.fileManage') }}</text>
- </view>
- <text class="item-arrow">›</text>
- </view>
-
- <!-- 审核管理 -->
- <view class="list-item" @click="handleAuditManage">
- <view class="item-left">
- <image class="item-icon" src="/static/pages-content/my/audit.png" mode="aspectFit" />
- <text class="item-label">{{ t('common.mine.auditManage') }}</text>
- </view>
- <text class="item-arrow">›</text>
- </view>
-
- <!-- 语言切换 -->
- <view class="list-item">
- <view class="item-left">
- <image class="item-icon" src="/static/pages-content/my/language.png" mode="aspectFit" />
- <text class="item-label">{{ t('common.mine.languageSwitch') }}</text>
- </view>
- <view class="language-switcher" @click="handleLanguageChange">
- <text class="language-text" :class="{ active: locale === 'zh-CN' }">中</text>
- <text class="language-separator">|</text>
- <text class="language-text" :class="{ active: locale === 'en-US' }">EN</text>
- </view>
- </view>
-
- <!-- 协议说明 -->
- <view class="list-item" @click="handleProtocol">
- <view class="item-left">
- <image class="item-icon" src="/static/pages-content/my/aggrement.png" mode="aspectFit" />
- <text class="item-label">{{ t('common.mine.protocol') }}</text>
- </view>
- <text class="item-arrow">›</text>
- </view>
- </view>
-
- <!-- 退出登录按钮 -->
- <view class="logout-section">
- <button class="logout-btn" @click="handleLogout">{{ t('common.mine.logout') }}</button>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import BasicInfo from './info/index.vue'
- import { ref, computed, onMounted } from 'vue'
- import { useI18n } from 'vue-i18n'
- import { useUserStore } from '@/store/index'
- import { useLocaleStore } from '@/store/locale'
- import { getUserInfo as getUserInfoAPI, logout as logoutAPI } from '@/apis/auth'
- const { t, locale } = useI18n()
- const userStore = useUserStore()
- const localeStore = useLocaleStore()
- // 控制显示哪个组件
- const showBasicInfo = ref(false)
- // 状态栏高度
- const statusBarHeight = ref(0)
- // 用户信息
- const userInfo = ref({
- avatar: '/static/default-avatar.svg',
- nickname: ''
- })
- // 加载状态
- const loading = ref(false)
- // 显示的昵称(带加载状态)
- const displayNickname = computed(() => {
- if (loading.value) {
- return t('common.mine.loading')
- }
- return userInfo.value.nickname || t('common.mine.defaultNickname')
- })
- onMounted(() => {
- // 获取系统信息
- const systemInfo = uni.getSystemInfoSync()
- statusBarHeight.value = systemInfo.statusBarHeight || 0
-
- // 获取用户信息
- fetchUserInfo()
-
- console.log('我的内容组件已加载')
- })
- // 头像加载失败处理
- const handleAvatarError = () => {
- console.log('头像加载失败,使用默认头像')
- userInfo.value.avatar = '/static/default-avatar.svg'
- }
- // 获取用户信息
- const fetchUserInfo = async () => {
- try {
- loading.value = true
-
- // 调用 API 获取用户信息
- const response = await getUserInfoAPI()
-
- if (response && response.data) {
- // 更新用户信息
- userInfo.value = {
- avatar: response.data.avatar || '/static/default-avatar.svg',
- nickname: response.data.nickname || ''
- }
-
- // 同步更新 store
- userStore.setUserInfo(response.data)
- }
- } catch (error) {
- console.error('获取用户信息失败:', error)
-
- // 如果API失败,尝试从本地store获取
- const storedUserInfo = userStore.userInfo
- if (storedUserInfo && storedUserInfo.nickname) {
- userInfo.value = {
- avatar: storedUserInfo.avatar || '/static/default-avatar.svg',
- nickname: storedUserInfo.nickname
- }
- } else {
- userInfo.value = {
- avatar: '/static/default-avatar.svg',
- nickname: ''
- }
- }
-
- uni.showToast({
- title: t('common.mine.getUserInfoFailed'),
- icon: 'none',
- duration: 2000
- })
- } finally {
- loading.value = false
- }
- }
- // 基本信息
- const handleBasicInfo = () => {
- showBasicInfo.value = true
- }
- // 从基本信息返回主页
- const handleBackToMain = () => {
- showBasicInfo.value = false
- }
- // 文件管理
- const handleFileManage = () => {
- uni.showToast({
- title: '文件管理',
- icon: 'none'
- })
- // TODO: 跳转到文件管理页面
- }
- // 审核管理
- const handleAuditManage = () => {
- uni.showToast({
- title: '审核管理',
- icon: 'none'
- })
- // TODO: 跳转到审核管理页面
- }
- // 语言切换
- const handleLanguageChange = () => {
- localeStore.toggleLocale()
-
- // 延迟一下让语言切换生效后再显示提示
- setTimeout(() => {
- uni.showToast({
- title: t('common.language.switchSuccess'),
- icon: 'success',
- duration: 1500
- })
- }, 100)
- }
- // 协议说明
- const handleProtocol = () => {
- uni.navigateTo({
- url: '/pages-content/my/aggreement/index'
- })
- }
- // 退出登录
- const handleLogout = () => {
- uni.showModal({
- title: t('common.button.confirm'),
- content: t('common.mine.logoutConfirm'),
- confirmText: t('common.button.confirm'),
- cancelText: t('common.button.cancel'),
- success: async (res) => {
- if (res.confirm) {
- try {
- // 显示加载状态
- uni.showLoading({
- title: t('common.message.loading'),
- mask: true
- })
-
- // 调用后端API
- await logoutAPI()
-
- // API调用成功后,清除本地token和用户信息缓存
- userStore.logout()
-
- uni.hideLoading()
-
- // 显示退出成功提示
- uni.showToast({
- title: t('common.mine.logoutSuccess'),
- icon: 'success',
- duration: 1500
- })
-
- // 延迟跳转到登录页
- setTimeout(() => {
- uni.reLaunch({
- url: '/pages/login/login'
- })
- }, 1500)
-
- } catch (error) {
- uni.hideLoading()
- console.error('退出登录失败:', error)
-
- // 即使 API失败,也清除本地数据并跳转
- userStore.logout()
-
- uni.showToast({
- title: t('common.mine.logoutSuccess'),
- icon: 'success',
- duration: 1500
- })
-
- setTimeout(() => {
- uni.reLaunch({
- url: '/pages/login/login'
- })
- }, 1500)
- }
- }
- }
- })
- }
- </script>
- <style lang="scss" scoped>
- .my-page {
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
-
- // 自定义头部
- .custom-header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- background-color: #ffffff;
- border-bottom: 1rpx solid #e5e5e5;
- z-index: 100;
-
- .header-content {
- height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .header-title {
- font-size: 32rpx;
- font-weight: 500;
- color: #000000;
- }
- }
- }
-
- // 页面内容
- .page-body {
- flex: 1;
- margin-top: 88rpx;
- padding: 40rpx;
-
- // 用户名片区域
- .user-card {
- background: linear-gradient(135deg, #6ec7f5 0%, #4eb8f0 100%);
- border-radius: 24rpx;
- padding: 80rpx 40rpx 60rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 40rpx;
- box-shadow: 0 8rpx 24rpx rgba(110, 199, 245, 0.25);
- position: relative;
- overflow: hidden;
-
- // 背景装饰
- &::before {
- content: '';
- position: absolute;
- top: -50%;
- right: -20%;
- width: 400rpx;
- height: 400rpx;
- background: rgba(255, 255, 255, 0.1);
- border-radius: 50%;
- }
-
- &::after {
- content: '';
- position: absolute;
- bottom: -30%;
- left: -10%;
- width: 300rpx;
- height: 300rpx;
- background: rgba(255, 255, 255, 0.08);
- border-radius: 50%;
- }
-
- .avatar {
- width: 140rpx;
- height: 140rpx;
- border-radius: 70rpx;
- margin-bottom: 24rpx;
- border: 6rpx solid rgba(255, 255, 255, 0.3);
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.2);
- position: relative;
- z-index: 1;
- transition: opacity 0.3s;
-
- &.loading {
- opacity: 0.5;
- animation: pulse 1.5s ease-in-out infinite;
- }
- }
-
- .nickname {
- font-size: 40rpx;
- font-weight: bold;
- color: #ffffff;
- text-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
- position: relative;
- z-index: 1;
- transition: opacity 0.3s;
-
- &.loading {
- opacity: 0.7;
- }
- }
- }
-
- // 功能列表
- .function-list {
- background-color: #ffffff;
- border-radius: 20rpx;
- overflow: hidden;
- margin-bottom: 40rpx;
- box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.06);
-
- .list-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 36rpx 40rpx;
- border-bottom: 1rpx solid #f0f0f0;
- transition: all 0.3s ease;
- position: relative;
-
- &:last-child {
- border-bottom: none;
- }
-
- &:active {
- background-color: #f0faff;
- }
-
- // 左侧渐变条
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 6rpx;
- height: 60%;
- background: linear-gradient(180deg, #6ec7f5 0%, #4eb8f0 100%);
- border-radius: 0 6rpx 6rpx 0;
- opacity: 0;
- transition: opacity 0.3s;
- }
-
- &:active::before {
- opacity: 1;
- }
-
- .item-left {
- display: flex;
- align-items: center;
-
- .item-icon {
- width: 44rpx;
- height: 44rpx;
- margin-right: 28rpx;
- }
-
- .item-label {
- font-size: 30rpx;
- color: #333333;
- font-weight: 500;
- }
- }
-
- .language-switcher {
- display: flex;
- align-items: center;
- background: rgba(110, 199, 245, 0.08);
- backdrop-filter: blur(10rpx);
- border-radius: 30rpx;
- padding: 8rpx 20rpx;
- cursor: pointer;
- transition: all 0.3s;
- gap: 8rpx;
-
- &:active {
- transform: scale(0.95);
- background: rgba(110, 199, 245, 0.15);
- }
-
- .language-text {
- font-size: 24rpx;
- color: #999;
- font-weight: 500;
- transition: all 0.3s;
-
- &.active {
- color: #6ec7f5;
- font-weight: 700;
- }
- }
-
- .language-separator {
- font-size: 24rpx;
- color: #ccc;
- font-weight: 300;
- }
- }
-
- .item-arrow {
- font-size: 48rpx;
- color: #d0d0d0;
- font-weight: 300;
- }
- }
- }
-
- // 退出登录
- .logout-section {
- padding: 0;
-
- .logout-btn {
- width: 100%;
- height: 96rpx;
- line-height: 96rpx;
- background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
- border-radius: 20rpx;
- border: none;
- font-size: 32rpx;
- color: #ffffff;
- font-weight: 600;
- box-shadow: 0 6rpx 20rpx rgba(255, 107, 107, 0.3);
- letter-spacing: 2rpx;
- padding: 0;
-
- &:active {
- opacity: 0.9;
- transform: scale(0.98);
- }
-
- &::after {
- border: none;
- }
- }
- }
- }
- }
- // 加载动画
- @keyframes pulse {
- 0%, 100% {
- opacity: 0.5;
- }
- 50% {
- opacity: 0.8;
- }
- }
- </style>
|