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) {