diff --git a/jero-web/src/views/documentTools/documentComparison/components/initiateComparison.vue b/jero-web/src/views/documentTools/documentComparison/components/initiateComparison.vue index 7375c90ee..47ebf74c6 100644 --- a/jero-web/src/views/documentTools/documentComparison/components/initiateComparison.vue +++ b/jero-web/src/views/documentTools/documentComparison/components/initiateComparison.vue @@ -209,7 +209,7 @@ columns: [ { title: this.$t('number'), - align: 'center', + align: 'left', width: 70, customRender: function(t, r, index) { return parseInt(index) + 1 @@ -217,25 +217,25 @@ }, { title: this.$t('standard'), - align: 'center', + align: 'left', ellipsis: true, dataIndex: 'serialNumber' }, { title: this.$t('title'), - align: 'center', + align: 'left', ellipsis: true, dataIndex: 'title' }, { title: this.$t('TextStatus'), - align: 'center', + align: 'left', ellipsis: true, dataIndex: 'fileType' }, { title: this.$t('fileName'), - align: 'center', + align: 'left', ellipsis: true, dataIndex: 'fileName' } diff --git a/jero-web/src/views/documentTools/documentComparison/index.vue b/jero-web/src/views/documentTools/documentComparison/index.vue index d08a1cac3..7ff56f4fa 100644 --- a/jero-web/src/views/documentTools/documentComparison/index.vue +++ b/jero-web/src/views/documentTools/documentComparison/index.vue @@ -137,7 +137,7 @@ columns: [ { title: this.$t('standard') + ' 1', - align: 'center', + align: 'left', dataIndex: 'serialNumberLeft', width: 170, ellipsis: true, @@ -145,7 +145,7 @@ }, { title: this.$t('title') + ' 1', - align: 'center', + align: 'left', dataIndex: 'titleLeft', width: 170, ellipsis: true, @@ -153,7 +153,7 @@ }, { title: this.$t('TextStatus') + ' 1', - align: 'center', + align: 'left', width: 200, ellipsis: true, dataIndex: 'fileTypeLeft' @@ -168,7 +168,7 @@ // }, { title: this.$t('standard') + ' 2', - align: 'center', + align: 'left', dataIndex: 'serialNumberRight', ellipsis: true, scopedSlots: { customRender: 'serialNumberRight' }, @@ -176,7 +176,7 @@ }, { title: this.$t('title') + ' 2', - align: 'center', + align: 'left', dataIndex: 'titleRight', scopedSlots: { customRender: 'serialNumberRight' }, ellipsis: true, @@ -184,7 +184,7 @@ }, { title: this.$t('TextStatus') + ' 2', - align: 'center', + align: 'left', width: 200, ellipsis: true, dataIndex: 'fileTypeRight' @@ -199,28 +199,28 @@ // }, { title: this.$t('releaseSituation'), - align: 'center', + align: 'left', width: 170, ellipsis: true, dataIndex: 'releaseStateTitle' }, { title: this.$t('creater'), - align: 'center', + align: 'left', width: 170, ellipsis: true, dataIndex: 'createBy' }, { title: this.$t('remarks'), - align: 'center', + align: 'left', ellipsis: true, width: 270, dataIndex: 'remark' }, { title: this.$t('operation'), - align: 'center', + align: 'left', fixed: 'right', width: 310, scopedSlots: { customRender: 'operation' }