优化拦截器

优化错误捕获
优化全局状态管理
配置全局公用类型
This commit is contained in:
tao
2025-12-19 15:54:26 +08:00
parent 71158afc35
commit 73dd0ae6b6
7 changed files with 141 additions and 53 deletions

View File

@@ -12,3 +12,14 @@
background-color: #8B8B8B;
border-radius: 32px;
}
.hide-scrollbar {
overflow: auto;
&::-webkit-scrollbar {
display: none;
}
/* 隐藏滚动条 - Firefox */
scrollbar-width: none;
/* 隐藏滚动条 - IE/Edge */
-ms-overflow-style: none;
}