fix: 1.将主页和法务助手对话设置成手机也能够正确加载的响应式布局。

2. 修改合同重新上传模板的可接受文件类型,修改对接的上传模板对应的接口。
3. 交叉评查任务列表去除任务名称的点击效果。
4. 交叉评查文件预览在点击完成评查的按钮后会返回任务列表并打开任务的文档列表。
5.修复点击完成评查按钮造成页面刷新。
6. 修复创建任务的第3步无法返回列表。
This commit is contained in:
2025-11-12 15:51:39 +08:00
parent c20c168a13
commit 8a50671c39
11 changed files with 578 additions and 182 deletions
+48 -2
View File
@@ -162,7 +162,31 @@
.sidebar.collapsed {
@apply w-20;
}
/* 移动端侧边栏遮罩层 */
.sidebar-overlay {
@apply fixed inset-0 bg-black bg-opacity-50 z-[99];
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* 移动端侧边栏样式 */
.sidebar-mobile {
@apply shadow-[0_0_20px_rgba(0,0,0,0.15)];
}
.sidebar-mobile.collapsed {
transform: translateX(-100%);
}
.sidebar-menu {
@apply flex-1 overflow-y-auto py-4 px-3;
}
@@ -277,7 +301,29 @@
@apply p-6;
}
}
/* 移动端响应式样式 (768px以下) */
@media (max-width: 768px) {
/* 移动端主内容区域无左边距 */
.main-content {
@apply ml-0;
}
.main-content.sidebar-collapsed {
@apply ml-0;
}
/* 移动端侧边栏默认隐藏 */
.sidebar {
@apply w-[280px];
}
/* 移动端侧边栏折叠时完全隐藏 */
.sidebar.collapsed {
@apply w-0;
}
}
@screen md {
.sidebar-toggle {
@apply block;