diff --git a/frontend/src/business/components/api/definition/components/list/ApiList.vue b/frontend/src/business/components/api/definition/components/list/ApiList.vue index 6405fdbbd4..f9d1a39f40 100644 --- a/frontend/src/business/components/api/definition/components/list/ApiList.vue +++ b/frontend/src/business/components/api/definition/components/list/ApiList.vue @@ -119,11 +119,17 @@ :field="item" :fields-width="fieldsWidth" min-width="80px" + :show-overflow-tooltip = false :label="$t('commons.tag')"> @@ -952,6 +958,17 @@ export default { } }); } + }, + getTagToolTips(tags){ + try{ + let showTips = ""; + tags.forEach( item => { + showTips += item + ","; + }) + return showTips; + }catch (e){ + return ""; + } } }, }; @@ -996,8 +1013,10 @@ export default { padding-right: 100%; } -/* /deep/ .el-table__fixed-body-wrapper { - top: 60px !important; -} */ +.oneLine { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +}