diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index cdfc617..6847987 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -11,7 +11,7 @@ label-width="auto" class="search-form" > - + h(NIcon, null, { default: () => h('icon-park-outline:download') }), + icon: () => h(NIcon, { size: 14 }, { default: () => h(IconParkOutlineDownload) }), }, { label: '导出全部数据', key: 'all', - icon: () => h(NIcon, null, { default: () => h('icon-park-outline:download-one') }), + icon: () => h(NIcon, { size: 14 }, { default: () => h(IconParkOutlineDownloadOne) }), }, { type: 'divider', @@ -164,7 +164,7 @@ { label: '下载导入模板', key: 'template', - icon: () => h(NIcon, null, { default: () => h('icon-park-outline:file-code-one') }), + icon: () => h(NIcon, { size: 14 }, { default: () => h(IconParkOutlineFileCodeOne) }), }, ]" @update:show="(show: boolean) => showExportDropdown = show" @@ -214,7 +214,8 @@ :row-key="(row: UserVo) => row.userId" :bordered="false" :single-line="false" - size="large" + :scroll-x="1600" + size="medium" class="custom-table" @update:checked-row-keys="handleRowSelectionChange" /> @@ -705,11 +706,14 @@