fix button 大小

This commit is contained in:
lbw 2023-02-08 15:48:11 +08:00
parent fb440f2b76
commit 31c2ac8968
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@
<el-table-column prop="createTime" :label="t('file.createTime')" show-overflow-tooltip/>
<el-table-column :label="$t('common.action')" width="200">
<template #default="scope">
<el-button size="small" text type="primary" v-auth="'sys_file_del'" @click="handleDelete(scope.row)">{{$t('common.delBtn') }}</el-button>
<el-button text type="primary" v-auth="'sys_file_del'" @click="handleDelete(scope.row)">{{$t('common.delBtn') }}</el-button>
<el-button type="primary" text @click="download(scope.row, scope.index)">{{$t('common.download') }}</el-button>
</template>
</el-table-column>

View File

@ -62,11 +62,11 @@
</el-table-column>
<el-table-column :label="$t('common.action')" width="150">
<template #default="scope">
<el-button size="small" text type="primary"
<el-button text type="primary"
@click="formDialogRef.openDialog(scope.row.publicId)">{{ $t('common.editBtn') }}
</el-button>
<el-button size="small" text type="primary" @click="handleDelete(scope.row)">{{
<el-button text type="primary" @click="handleDelete(scope.row)">{{
$t('common.delBtn')
}}
</el-button>