diff --git a/jero-web/src/components/ParameterLibraryAdd/index.vue b/jero-web/src/components/ParameterLibraryAdd/index.vue index a66300b97..4d972d944 100644 --- a/jero-web/src/components/ParameterLibraryAdd/index.vue +++ b/jero-web/src/components/ParameterLibraryAdd/index.vue @@ -97,13 +97,13 @@ { title: this.$t('NiONumber'), dataIndex: 'nioNumber', - align: 'center', + align: 'left', width: 200, ellipsis: true }, { title: this.$t('ParameterName'), - align: 'center', + align: 'left', dataIndex: 'paramsName', width: 200, ellipsis: true @@ -111,7 +111,7 @@ { title: this.$t('areaOfResponsibility'), dataIndex: 'dutyTerritory_dictText', - align: 'center', + align: 'left', width: 200, ellipsis: true } diff --git a/jero-web/src/views/projectManagement/components/commentList.vue b/jero-web/src/views/projectManagement/components/commentList.vue index 71c112204..62fbf60fd 100644 --- a/jero-web/src/views/projectManagement/components/commentList.vue +++ b/jero-web/src/views/projectManagement/components/commentList.vue @@ -375,15 +375,24 @@ } .box-input { - width: calc(100% - 168px); + width: calc(100% - 183px); margin-right: 8px; } .button-text { - width: 73px; + width: 88px; overflow: hidden; padding: 0 8px; - box-sizing: border-box; + //box-sizing: border-box; + float: right; + } + + ::v-deep .button-text span { + width: 64px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + margin-top: 4px; }