From 85fb13abbeadc1765d2c0056ba99c6c19aa35dfd Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Sun, 09 Apr 2023 03:44:49 +0800
Subject: [PATCH] 电子沙盘的调整
---
src/components/imagesSelect/index.vue | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/src/components/imagesSelect/index.vue b/src/components/imagesSelect/index.vue
index cc05e6b..f004a7b 100644
--- a/src/components/imagesSelect/index.vue
+++ b/src/components/imagesSelect/index.vue
@@ -2,7 +2,7 @@
* @Author: shuishen 1109946754@qq.com
* @Date: 2023-04-04 16:24:42
* @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2023-04-06 10:37:52
+ * @LastEditTime: 2023-04-07 15:59:41
* @FilePath: \srs-police-affairs\src\components\imagesSelect\index.vue
* @Description:
*
@@ -60,9 +60,10 @@
<style lang="scss" scoped>
.container {
- // position: absolute;
- // left: 0;
- // bottom: -10px;
+ position: absolute;
+ left: 0;
+ top: 100%;
+ z-index: 999999;
display: flex;
flex-wrap: wrap;
@@ -108,6 +109,9 @@
height: 20px;
line-height: 20px;
font-size: 12px;
+ overflow: hidden; //超出的文本隐藏
+ text-overflow: ellipsis; //溢出用省略号显示
+ white-space: nowrap; //溢出不换行
}
}
}
--
Gitblit v1.9.3