提交了界面修改

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: '/', path: '/',
name: 'Dashboard', name: 'Dashboard',
component: Dashboard, component: Dashboard,
meta: { title: '仪表板 - 平衡体态检测系统', requiresAuth: true } meta: { title: '平衡体态检测系统', requiresAuth: true }
}, },
{ {
path: '/patient/create', path: '/patient/create',

View File

@ -19,8 +19,8 @@
<div class="user-info"> <div class="user-info">
<img src="@/assets/new/u13.png" alt="Avatar" style="width: 30px;height: 30px;"> <img src="@/assets/new/u13.png" alt="Avatar" style="width: 30px;height: 30px;">
<span class="username">{{ userInfo.name }}</span> <span class="username">{{ userInfo.name }}</span>
<div class="user-line"></div>
<span class="username user-return" @click="handleLogout">退出登录</span>
</div> </div>
</div> </div>
</div> </div>

View File

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