提交了界面修改

This commit is contained in:
root 2025-12-07 20:58:14 +08:00
parent ef88e599dd
commit 1b1bada016
3 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ const routes = [
path: '/',
name: 'Dashboard',
component: Dashboard,
meta: { title: '仪表板 - 平衡体态检测系统', requiresAuth: true }
meta: { title: '平衡体态检测系统', requiresAuth: true }
},
{
path: '/patient/create',

View File

@ -19,8 +19,8 @@
<div class="user-info">
<img src="@/assets/new/u13.png" alt="Avatar" style="width: 30px;height: 30px;">
<span class="username">{{ userInfo.name }}</span>
<div class="user-line"></div>
<span class="username user-return" @click="handleLogout">退出登录</span>
</div>
</div>
</div>
@ -343,4 +343,4 @@
color: rgb(59, 242, 198);
padding-left:10px;
}
</style>
</style>

View File

@ -7,8 +7,8 @@ import { ref, reactive, computed, onMounted, onUnmounted, watch } from 'vue'
import * as THREE from 'three';
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js';
import maleUrl from '@/assets/glb/男.glb?url'
import femaleUrl from '@/assets/glb/女.glb?url'
const maleUrl = new URL('../assets/glb/男.glb', import.meta.url).href
const femaleUrl = new URL('../assets/glb/女.glb', import.meta.url).href
// const { ipcRenderer } = require('electron');