解决无法缩小问题,解决跳转登录失败问题

This commit is contained in:
朱浩 2024-07-09 16:45:40 +08:00
parent 07f982c0b3
commit f5d94a710c
2 changed files with 5 additions and 5 deletions

View File

@ -52,7 +52,7 @@ import useUserStore from '@/store/modules/user'
const userStore = useUserStore() const userStore = useUserStore()
const userInfo = userStore.user const userInfo = userStore.user
// const { ipcRenderer } = window.electron const { ipcRenderer } = window.electron||{}
const radio1 = ref('resource') const radio1 = ref('resource')
@ -65,7 +65,7 @@ const minimizeWindow = () => {
} }
// //
const maximizeWindow = () => { const maximizeWindow = () => {
ipcRenderer.send('maximize-window') ipcRenderer?.send('maximize-window')
isMaxSize.value = !isMaxSize.value isMaxSize.value = !isMaxSize.value
} }
// //
@ -95,7 +95,7 @@ const changePage = (url)=>{
.change-tab{ .change-tab{
-webkit-app-region: no-drag; -webkit-app-region: no-drag;
margin-left: 20px; margin-left: 20px;
ul{ ul{
li{ li{
padding: 3px 13px; padding: 3px 13px;
@ -155,7 +155,7 @@ const changePage = (url)=>{
} }
} }
.user { .user {
.user-info { .user-info {
padding-right: 5px; padding-right: 5px;
align-items: center; align-items: center;

View File

@ -87,7 +87,7 @@ service.interceptors.response.use(res => {
ElMessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { confirmButtonText: '重新登录', cancelButtonText: '取消', type: 'warning' }).then(() => { ElMessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { confirmButtonText: '重新登录', cancelButtonText: '取消', type: 'warning' }).then(() => {
isRelogin.show = false; isRelogin.show = false;
useUserStore().logOut().then(() => { useUserStore().logOut().then(() => {
location.href = '/index'; location.href = '/index#/login';
}) })
}).catch(() => { }).catch(() => {
isRelogin.show = false; isRelogin.show = false;