修复配置管理的图标

This commit is contained in:
YunaiV 2023-03-10 00:53:23 +08:00
parent f474e06b00
commit 5c675995cb

View File

@ -49,9 +49,10 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<!-- TODO 按钮图标不对 已解决 --> <el-button type="primary" @click="handleQuery">
<el-button type="primary" :icon="Search" @click="handleQuery">搜索</el-button> <Icon icon="ep:search" class="mr-5px" /> 搜索
<el-button :icon="Refresh" @click="resetQuery">重置</el-button> </el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -63,23 +64,20 @@
<el-button <el-button
type="primary" type="primary"
plain plain
:icon="Plus"
@click="openModal('create')" @click="openModal('create')"
v-hasPermi="['infra:config:create']" v-hasPermi="['infra:config:create']"
> >
新增 <Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button> </el-button>
</el-col> </el-col>
<!-- TODO 芋艿图标不对 已解决 -->
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button
type="warning" type="warning"
:icon="Download"
@click="handleExport" @click="handleExport"
:loading="exportLoading" :loading="exportLoading"
v-hasPermi="['infra:config:export']" v-hasPermi="['infra:config:export']"
> >
导出 <Icon icon="ep:download" class="mr-5px" /> 导出
</el-button> </el-button>
</el-col> </el-col>
<!-- TODO 芋艿右侧导航 --> <!-- TODO 芋艿右侧导航 -->
@ -111,26 +109,24 @@
<span>{{ dayjs(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span> <span>{{ dayjs(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
</template> </template>
</el-table-column> </el-table-column>
<!-- TODO 芋艿icon 有问题会换行 已解决 --> <!-- TODO 芋艿宽度里面的 css -->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope"> <template #default="scope">
<el-button <el-button
link link
type="primary" type="primary"
:icon="Edit"
@click="openModal('update', scope.row.id)" @click="openModal('update', scope.row.id)"
v-hasPermi="['infra:config:update']" v-hasPermi="['infra:config:update']"
> >
修改 <Icon icon="ep:edit" /> 修改
</el-button> </el-button>
<el-button <el-button
link link
type="primary" type="primary"
:icon="Delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
v-hasPermi="['infra:config:delete']" v-hasPermi="['infra:config:delete']"
> >
删除 <Icon icon="ep:delete" /> 删除
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>