style(fvTable): 移除表格单元格悬停时的宽度限制

- 注释掉 .fv-table :deep(.el-tooltip) 中的 width: 100% !important 样式
-此修改解决了单元格内容过长时导致的表格布局问题
This commit is contained in:
dj
2025-06-20 09:57:06 +08:00
parent 2400660b1f
commit a451f7481e

View File

@@ -347,7 +347,7 @@ onMounted(() => {
.fv-table {
:deep(.el-tooltip) {
width: 100% !important;
//width: 100% !important;
}
}
</style>