diff --git a/jero-web/src/views/parameter/parameterexport/index.vue b/jero-web/src/views/parameter/parameterexport/index.vue index 70e73ed56..b60c0964e 100644 --- a/jero-web/src/views/parameter/parameterexport/index.vue +++ b/jero-web/src/views/parameter/parameterexport/index.vue @@ -44,10 +44,10 @@ :columns="columns" > - {{ text && text.length > 15 ? text.slice(0, 14) + '...' : text }} + {{ text }} - {{ text && text.length > 25 ? text.slice(0, 21) + '...' : text }} + {{ text }} {{$t('edit')}} @@ -150,6 +150,7 @@ export default { title: this.$t('templateName'), align: 'center', dataIndex: 'templateName', + ellipsis: true, width: 300, scopedSlots: { customRender: 'templateName' } }, @@ -157,25 +158,29 @@ export default { title: this.$t('contentDescription'), align: 'center', dataIndex: 'description', + ellipsis: true, width: 300, scopedSlots: { customRender: 'projectName' } }, { title: this.$t('status'), align: 'center', - width: 100, + width: 120, + ellipsis: true, dataIndex: 'state_dictText' }, { title: this.$t('creater'), align: 'center', - width: 100, + width: 120, + ellipsis: true, dataIndex: 'createBy' }, { title: this.$t('Latestupdatetime'), align: 'center', width: 180, + ellipsis: true, dataIndex: 'updateTime' }, {