|
@@ -28,7 +28,12 @@ watch(() => [
|
|
|
|
|
|
nextTick(()=> {
|
|
|
setUserTheme(appStore.getThemeVal, appStore.getColor)
|
|
|
- ulog('客户端 启动成功', '当前开发版本 v' + config?.version)
|
|
|
+ ulog('档案管理 启动成功', '当前开发版本 v' + config?.version)
|
|
|
+ //当屏幕分辨率宽度低于1920时,自动折叠菜单
|
|
|
+ const width = document.body.clientWidth
|
|
|
+ if (width < 1920) {
|
|
|
+ appStore.setCollapse(true)
|
|
|
+ }
|
|
|
})
|
|
|
|
|
|
//设置主题
|