diff --git a/jero-web/src/views/externalReports/index.vue b/jero-web/src/views/externalReports/index.vue index 81a329dbf..920677cbc 100644 --- a/jero-web/src/views/externalReports/index.vue +++ b/jero-web/src/views/externalReports/index.vue @@ -143,10 +143,10 @@ :columns="columns" > - {{ text && text.length > 20 ? text.slice(0, 18) + '...' : text }} + {{ text }} - {{ text && text.length > 15 ? text.slice(0, 14) + '...' : text }} + {{ text }} @@ -382,6 +382,7 @@ { title: this.$t('fileName'), align: 'left', + ellipsis: true, dataIndex: 'fileName', scopedSlots: { customRender: 'fileName' }, width: 200 @@ -389,6 +390,7 @@ { title: this.$t('fileDeclaration'), align: 'left', + ellipsis: true, dataIndex: 'fileDescription', scopedSlots: { customRender: 'projectName' }, width: 300 @@ -396,6 +398,7 @@ { title: this.$t('uploadedBy'), align: 'left', + ellipsis: true, dataIndex: 'createBy', width: 150 }, @@ -407,6 +410,7 @@ { title: this.$t('uploadTime'), align: 'left', + ellipsis: true, dataIndex: 'createTime', width: 250 }, @@ -414,6 +418,7 @@ title: this.$t('operation'), align: 'left', fixed: 'right', + ellipsis: true, width: 250, scopedSlots: { customRender: 'operation' } } @@ -1123,7 +1128,7 @@