diff --git a/ruoyi-ui/public/index.html b/ruoyi-ui/public/index.html index 3c6eb5b5..a897dc02 100644 --- a/ruoyi-ui/public/index.html +++ b/ruoyi-ui/public/index.html @@ -92,7 +92,20 @@ animation: spin 1.5s linear infinite; } - + .div-txt-2 { + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + text-overflow: ellipsis; + } + .div-txt-3 { + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + text-overflow: ellipsis; + } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); diff --git a/ruoyi-ui/src/views/project/checkDetection/checkDetectionDrawer.vue b/ruoyi-ui/src/views/project/checkDetection/checkDetectionDrawer.vue index 8467622f..f9ef9d0c 100644 --- a/ruoyi-ui/src/views/project/checkDetection/checkDetectionDrawer.vue +++ b/ruoyi-ui/src/views/project/checkDetection/checkDetectionDrawer.vue @@ -1,42 +1,17 @@