mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-02 10:57:24 +08:00
refactor: 重构图标模块,使用`@iconify/json`替换不再维护更新的`@iconify-icons/*`依赖,优化使用体验,确保图标库可持续更新并支持`Tree-shaking`
164 lines
4.2 KiB
Vue
164 lines
4.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import { useMenu } from "./utils/hook";
|
|
import { transformI18n } from "@/plugins/i18n";
|
|
import { PureTableBar } from "@/components/RePureTableBar";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
|
|
import Delete from "~icons/ep/delete";
|
|
import EditPen from "~icons/ep/edit-pen";
|
|
import Refresh from "~icons/ep/refresh";
|
|
import AddFill from "~icons/ri/add-circle-line";
|
|
|
|
defineOptions({
|
|
name: "SystemMenu"
|
|
});
|
|
|
|
const formRef = ref();
|
|
const tableRef = ref();
|
|
const {
|
|
form,
|
|
loading,
|
|
columns,
|
|
dataList,
|
|
onSearch,
|
|
resetForm,
|
|
openDialog,
|
|
handleDelete,
|
|
handleSelectionChange
|
|
} = useMenu();
|
|
|
|
function onFullscreen() {
|
|
// 重置表格高度
|
|
tableRef.value.setAdaptive();
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="main">
|
|
<el-form
|
|
ref="formRef"
|
|
:inline="true"
|
|
:model="form"
|
|
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px] overflow-auto"
|
|
>
|
|
<el-form-item label="菜单名称:" prop="title">
|
|
<el-input
|
|
v-model="form.title"
|
|
placeholder="请输入菜单名称"
|
|
clearable
|
|
class="!w-[180px]"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon('ri:search-line')"
|
|
:loading="loading"
|
|
@click="onSearch"
|
|
>
|
|
搜索
|
|
</el-button>
|
|
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(formRef)">
|
|
重置
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<PureTableBar
|
|
title="菜单管理(仅演示,操作后不生效)"
|
|
:columns="columns"
|
|
:isExpandAll="false"
|
|
:tableRef="tableRef?.getTableRef()"
|
|
@refresh="onSearch"
|
|
@fullscreen="onFullscreen"
|
|
>
|
|
<template #buttons>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon(AddFill)"
|
|
@click="openDialog()"
|
|
>
|
|
新增菜单
|
|
</el-button>
|
|
</template>
|
|
<template v-slot="{ size, dynamicColumns }">
|
|
<pure-table
|
|
ref="tableRef"
|
|
adaptive
|
|
:adaptiveConfig="{ offsetBottom: 45 }"
|
|
align-whole="center"
|
|
row-key="id"
|
|
showOverflowTooltip
|
|
table-layout="auto"
|
|
:loading="loading"
|
|
:size="size"
|
|
:data="dataList"
|
|
:columns="dynamicColumns"
|
|
:header-cell-style="{
|
|
background: 'var(--el-fill-color-light)',
|
|
color: 'var(--el-text-color-primary)'
|
|
}"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<template #operation="{ row }">
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(EditPen)"
|
|
@click="openDialog('修改', row)"
|
|
>
|
|
修改
|
|
</el-button>
|
|
<el-button
|
|
v-show="row.menuType !== 3"
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(AddFill)"
|
|
@click="openDialog('新增', { parentId: row.id } as any)"
|
|
>
|
|
新增
|
|
</el-button>
|
|
<el-popconfirm
|
|
:title="`是否确认删除菜单名称为${transformI18n(row.title)}的这条数据${row?.children?.length > 0 ? '。注意下级菜单也会一并删除,请谨慎操作' : ''}`"
|
|
@confirm="handleDelete(row)"
|
|
>
|
|
<template #reference>
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Delete)"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</template>
|
|
</pure-table>
|
|
</template>
|
|
</PureTableBar>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
:deep(.el-table__inner-wrapper::before) {
|
|
height: 0;
|
|
}
|
|
|
|
.main-content {
|
|
margin: 24px 24px 0 !important;
|
|
}
|
|
|
|
.search-form {
|
|
:deep(.el-form-item) {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
</style>
|