From cb4fd10ca1a71b908c8b52eba962b3aa39008d1f Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 16 May 2024 15:28:01 +0800
Subject: [PATCH] 校园安全优化
---
subPackage/school/troubleAuditList.vue | 17 +++++++++++++++++
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/subPackage/school/troubleAuditList.vue b/subPackage/school/troubleAuditList.vue
index 8891c6e..b993ccb 100644
--- a/subPackage/school/troubleAuditList.vue
+++ b/subPackage/school/troubleAuditList.vue
@@ -33,6 +33,10 @@
<text class="f-28">法人信息</text>
<text class="f-28 c-66">{{ item.legalPerson ? item.legalPerson : '未完善'}}</text>
</view> -->
+ <view class="item-row flex a-i-c j-c-s-b">
+ <text class="f-28">描述</text>
+ <text class="f-28 c-66 remarkText">{{item.remark}}</text>
+ </view>
<view class="item-row flex a-i-c j-c-s-b f-28">
<text>时间</text>
<text class="c-66">{{item.createTime}}</text>
@@ -287,6 +291,19 @@
width: 65%;
text-align: right;
}
+
+ .remarkText {
+ width: 200px;
+ /* 定义容器宽度 */
+ white-space: nowrap;
+ /* 确保文本在一行内显示 */
+ overflow: hidden;
+ /* 隐藏超出容器的文本 */
+ text-overflow: ellipsis;
+ /* 使用点点表示文本的溢出 */
+ text-align: right;
+ /* 文本居中对齐 */
+ }
}
}
</style>
\ No newline at end of file
--
Gitblit v1.9.3