diff --git a/src/views/open/app/index.vue b/src/views/open/app/index.vue index 209822046..7cd74bc99 100644 --- a/src/views/open/app/index.vue +++ b/src/views/open/app/index.vue @@ -124,7 +124,7 @@ const columns: TableInstanceColumns[] = [ render: ({ rowIndex }) => h('span', {}, rowIndex + 1 + (pagination.current - 1) * pagination.pageSize), fixed: !isMobile() ? 'left' : undefined, }, - { title: '名称', dataIndex: 'name', slotName: 'name', fixed: !isMobile() ? 'left' : undefined }, + { title: '名称', dataIndex: 'name', slotName: 'name', ellipsis: true, tooltip: true, fixed: !isMobile() ? 'left' : undefined }, { title: 'Access Key', dataIndex: 'accessKey', slotName: 'accessKey', width: 200 }, { title: 'Secret Key', dataIndex: 'secretKey', slotName: 'secretKey', width: 200 }, { title: '失效时间', dataIndex: 'expireTime', width: 180 }, diff --git a/src/views/system/dict/tree/index.vue b/src/views/system/dict/tree/index.vue index e78f0c163..cfae43c61 100644 --- a/src/views/system/dict/tree/index.vue +++ b/src/views/system/dict/tree/index.vue @@ -205,7 +205,7 @@ onMounted(() => { .search { display: flex; justify-content: start; - margin-bottom: 2px; + margin-bottom: 10px; .arco-btn { margin-left: 8px; padding: 0 15px;