style: button icon style

This commit is contained in:
xingyu
2022-07-20 10:50:55 +08:00
parent 1335a7aef7
commit 58cbb2127f
32 changed files with 96 additions and 92 deletions

View File

@ -345,7 +345,7 @@ getList()
v-hasPermi="['system:user:update']"
@click="handleUpdate(row)"
>
<Icon icon="ep:edit" class="mr-5px" /> {{ t('action.edit') }}
<Icon icon="ep:edit" class="mr-1px" /> {{ t('action.edit') }}
</el-button>
<el-button
link
@ -353,7 +353,7 @@ getList()
v-hasPermi="['system:user:update']"
@click="handleDetail(row)"
>
<Icon icon="ep:view" class="mr-5px" /> {{ t('action.detail') }}
<Icon icon="ep:view" class="mr-1px" /> {{ t('action.detail') }}
</el-button>
<el-button
link
@ -361,7 +361,7 @@ getList()
v-hasPermi="['system:user:update-password']"
@click="handleResetPwd(row)"
>
<Icon icon="ep:key" class="mr-5px" /> 重置密码
<Icon icon="ep:key" class="mr-1px" /> 重置密码
</el-button>
<el-button
link
@ -369,7 +369,7 @@ getList()
v-hasPermi="['system:user:delete']"
@click="handleDelete(row)"
>
<Icon icon="ep:delete" class="mr-5px" /> {{ t('action.del') }}
<Icon icon="ep:delete" class="mr-1px" /> {{ t('action.del') }}
</el-button>
</template>
</Table>