| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <template>
- <view class="page-mine">
- <scroll-view class="scroll-view" scroll-y>
- <view class="content-wrapper">
- <!-- 用户信息卡片 -->
- <view class="user-info-card" @click="handleUserCardClick">
- <view class="user-header">
- <image
- class="user-avatar"
- :src="isLoggedIn && userInfo.avatar ? userInfo.avatar : '/static/images/head.png'"
- mode="aspectFill"
- ></image>
- <view class="user-details">
- <text class="user-name">{{ isLoggedIn ? (userInfo.nickname || '微信用户') : '登录/注册' }}</text>
- </view>
- <view class="arrow-icon">›</view>
- </view>
- </view>
- <!-- 菜单列表 -->
- <view class="menu-list">
- <view class="menu-item" @click="handleSubscriptionRecord">
- <view class="menu-left">
- <text class="menu-icon">📝</text>
- <text class="menu-label">订阅记录</text>
- </view>
- <text class="menu-arrow">›</text>
- </view>
-
- <!-- 管理员专属菜单 -->
- <view class="menu-item" v-if="isAdmin" @click="handleShortPoolManage">
- <view class="menu-left">
- <text class="menu-icon">⚡</text>
- <text class="menu-label">超短池管理</text>
- </view>
- <text class="menu-arrow">›</text>
- </view>
- </view>
- <!-- 退出登录按钮(仅登录后显示) -->
- <view class="logout-section" v-if="isLoggedIn">
- <button class="logout-btn" @click="handleLogout">
- 退出登录
- </button>
- </view>
- <!-- 预留底部空间 -->
- <view class="bottom-safe-area"></view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onShow } from '@dcloudio/uni-app'
- import { isLoggedIn as checkLogin, getUserInfo as getStoredUserInfo, refreshUserInfo, logout, checkLogin as requireLogin } from '@/utils/auth.js'
- const isLoggedIn = ref(false)
- const isAdmin = ref(false)
- const userInfo = ref({
- nickname: '',
- avatar: '',
- status: 0
- })
- /**
- * 页面显示时刷新用户信息
- */
- onShow(() => {
- loadUserInfo()
- uni.setNavigationBarTitle({ title: '量化交易大师' })
- })
- /**
- * 加载用户信息(从后端获取最新状态)
- */
- const loadUserInfo = async () => {
- isLoggedIn.value = checkLogin()
-
- if (isLoggedIn.value) {
- // 先显示本地缓存
- const storedInfo = getStoredUserInfo()
- if (storedInfo) {
- userInfo.value = storedInfo
- isAdmin.value = storedInfo.status === 2
- }
-
- // 从后端刷新最新状态
- const latestInfo = await refreshUserInfo()
- if (latestInfo) {
- userInfo.value = latestInfo
- isAdmin.value = latestInfo.status === 2
- }
- } else {
- isAdmin.value = false
- }
- }
- /**
- * 点击用户卡片
- */
- const handleUserCardClick = () => {
- if (!isLoggedIn.value) {
- handleLogin()
- } else {
- // 已登录,跳转到编辑资料页面
- uni.navigateTo({
- url: '/pages/profile/edit'
- })
- }
- }
- /**
- * 处理登录
- */
- const handleLogin = async () => {
- console.log('[我的] 开始登录流程')
-
- // 跳转到登录页面
- uni.navigateTo({
- url: '/pages/login/login'
- })
- }
- /**
- * 退出登录
- */
- const handleLogout = () => {
- uni.showModal({
- title: '提示',
- content: '确定要退出登录吗?',
- success: (res) => {
- if (res.confirm) {
- logout()
- isLoggedIn.value = false
- userInfo.value = { nickname: '', avatar: '' }
- uni.showToast({ title: '已退出登录', icon: 'none' })
- }
- }
- })
- }
- /**
- * 订阅记录
- */
- const handleSubscriptionRecord = () => {
- if (!requireLogin(() => {
- handleSubscriptionRecord()
- })) {
- return
- }
-
- // 跳转到订阅记录页面
- uni.navigateTo({
- url: '/pages/transaction/transaction'
- })
- }
- /**
- * 超短池管理(管理员专属)
- */
- const handleShortPoolManage = () => {
- if (!isAdmin.value) {
- uni.showToast({ title: '无权限访问', icon: 'none' })
- return
- }
- uni.navigateTo({
- url: '/pages/admin/shortPool'
- })
- }
- </script>
- <style>
- .page-mine {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #f5f6fb;
- }
- .scroll-view {
- flex: 1;
- height: 0;
- }
- .content-wrapper {
- padding: 32rpx;
- background: #f5f6fb;
- min-height: 100%;
- }
- /* 用户信息卡片 */
- .user-info-card {
- background: #ffffff;
- border-radius: 24rpx;
- padding: 40rpx 32rpx;
- margin-bottom: 32rpx;
- box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08);
- }
- .user-header {
- display: flex;
- align-items: center;
- }
- .user-avatar {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- background: #f5f6fb;
- margin-right: 24rpx;
- border: 4rpx solid #f5f6fb;
- }
- .user-details {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .user-name {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- margin-bottom: 8rpx;
- }
- .arrow-icon {
- font-size: 48rpx;
- color: #9ca2b5;
- font-weight: 300;
- }
- /* 菜单列表 */
- .menu-list {
- background: #ffffff;
- border-radius: 24rpx;
- overflow: hidden;
- box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08);
- margin-bottom: 32rpx;
- }
- .menu-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 32rpx;
- border-bottom: 1rpx solid #f5f6fb;
- }
- .menu-item:last-child {
- border-bottom: none;
- }
- .menu-left {
- display: flex;
- align-items: center;
- }
- .menu-icon {
- font-size: 36rpx;
- margin-right: 20rpx;
- }
- .menu-label {
- font-size: 28rpx;
- color: #222222;
- }
- .menu-arrow {
- font-size: 40rpx;
- color: #9ca2b5;
- font-weight: 300;
- }
- .admin-badge {
- background: linear-gradient(135deg, #ff9500, #ff5e3a);
- color: #ffffff;
- font-size: 20rpx;
- padding: 4rpx 12rpx;
- border-radius: 20rpx;
- margin-right: 12rpx;
- }
- /* 退出登录按钮 */
- .logout-section {
- margin-top: 20rpx;
- }
- .logout-btn {
- width: 100%;
- background: #5d55e8;
- color: #ffffff;
- border-radius: 16rpx;
- padding: 28rpx 0;
- text-align: center;
- font-size: 30rpx;
- font-weight: 600;
- box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.3);
- border: none;
- line-height: 1;
- }
- .logout-btn::after {
- border: none;
- }
- .logout-btn:active {
- opacity: 0.8;
- }
- .bottom-safe-area {
- height: 80rpx;
- }
- </style>
|