From 3c97e2fcdd2abf134a4cbda9a60172dc712c8413 Mon Sep 17 00:00:00 2001 From: baoyu <102349094+Bytq@users.noreply.github.com> Date: Tue, 16 Apr 2024 13:18:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E5=9B=BD=E5=86=85?= =?UTF-8?q?=E5=A4=96=E6=A0=87=E5=87=86=E8=AF=A6=E6=83=85=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../details/otherStandardDetails/index.vue | 26 ++++++++++++++----- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index 68f1b6aed..2ac9af4c8 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -298,9 +298,11 @@
{{ sarStandardsInfoEO.issueTime || '-' }}
-{{ - sarStandardsInfoEO.standSystem || '-' - }}
+
+
@@ -582,8 +584,8 @@ - {{ file.oldFileName | ellipsis }} + {{ file.oldFileName}} - {{ file.oldFileName | ellipsis }} + {{ file.oldFileName}} 20) { + return value.slice(0, 20) + '...' + } + return value + }, ellipsis(value) { if (!value) return '' + if (value.length > 12) { + return value.slice(0, 12) + '...' + } return value }, ellipsis50(value) {