Skip to content

Commit

Permalink
style: 优化部分样式
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Dec 14, 2024
1 parent 84be614 commit 7fb3db6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/open/app/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down
2 changes: 1 addition & 1 deletion src/views/system/dict/tree/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7fb3db6

Please sign in to comment.