修改扫码时间间隔分辨率以及添加语音播报,对边框进行缩减由210px修改为180px

This commit is contained in:
dxc
2026-02-10 10:32:59 +08:00
parent 1edd9a95c6
commit bccbeaadce
2 changed files with 67 additions and 21 deletions

View File

@ -22,7 +22,7 @@ import AppMain from './components/AppMain.vue'
}
.sidebar-container {
width: 210px; /* 固定侧边栏宽度 */
width: 180px; /* 固定侧边栏宽度 */
height: 100%;
background-color: #304156; /* 侧边栏背景色 */
flex-shrink: 0; /* 防止被挤压 */
@ -37,7 +37,7 @@ import AppMain from './components/AppMain.vue'
flex-direction: column;
overflow-y: auto; /* 关键:页面内容过多时,只在右侧区域滚动 */
background-color: #f0f2f5; /* 右侧灰色背景,让白色卡片更明显 */
padding: 20px; /* 给内部页面留出边距 */
padding: 10px; /* 给内部页面留出边距 */
box-sizing: border-box;
}
</style>