From 0ea8bf4ab8217262fee2fb8f3bc613c12640c5eb Mon Sep 17 00:00:00 2001
From: value <z1292839451@163.com>
Date: 星期三, 01 五月 2024 23:11:23 +0800
Subject: [PATCH] 修复post请求体过大导致数据不全的问题
---
src/App.vue | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/src/App.vue b/src/App.vue
index 3a329af..834f3fb 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -110,9 +110,16 @@
}
.el-popover {
+ max-height: 80vh;
+ overflow-y: auto;
+ overflow-x: hidden;
padding: 0;
z-index: 9999 !important;
}
+
+ .el-popover::-webkit-scrollbar{
+ width: 0;
+ }
.el-popper .popper__arrow {
display: none;
@@ -300,4 +307,9 @@
overflow: hidden;
text-overflow: ellipsis;
}
+
+ .el-cascader-menu__wrap{
+ height: 300px;
+ }
+
</style>
--
Gitblit v1.9.3