mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-02 10:57:24 +08:00
* feat: 添加系统管理-菜单管理 * chore: update * chore: add Copyright in login page * chore: 将页脚放在一屏可视区 * chore: 依赖更新 * chore: update * chore: update * chore: 更新依赖 * chore: update `husky v9` * style: 适配`el-dialog`样式的更新 * style: update `src/layout/components/search/components/SearchResult.vue` * chore: update * style: update * fix: 修复`ReDialog`中点击取消和确定按钮会触发两次关闭回调 * chore: update * chore: update src/views/system/menu/README.md * chore: update * chore: update * chore: done * chore: update
220 lines
5.9 KiB
Vue
220 lines
5.9 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
import { useRole } from "./utils/hook";
|
|
import { PureTableBar } from "@/components/RePureTableBar";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
|
|
// import Database from "@iconify-icons/ri/database-2-line";
|
|
// import More from "@iconify-icons/ep/more-filled";
|
|
import Delete from "@iconify-icons/ep/delete";
|
|
import EditPen from "@iconify-icons/ep/edit-pen";
|
|
import Refresh from "@iconify-icons/ep/refresh";
|
|
import Menu from "@iconify-icons/ep/menu";
|
|
import AddFill from "@iconify-icons/ri/add-circle-line";
|
|
|
|
defineOptions({
|
|
name: "SystemRole"
|
|
});
|
|
|
|
const formRef = ref();
|
|
const {
|
|
form,
|
|
loading,
|
|
columns,
|
|
dataList,
|
|
pagination,
|
|
// buttonClass,
|
|
onSearch,
|
|
resetForm,
|
|
openDialog,
|
|
handleMenu,
|
|
handleDelete,
|
|
// handleDatabase,
|
|
handleSizeChange,
|
|
handleCurrentChange,
|
|
handleSelectionChange
|
|
} = useRole();
|
|
</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]"
|
|
>
|
|
<el-form-item label="角色名称:" prop="name">
|
|
<el-input
|
|
v-model="form.name"
|
|
placeholder="请输入角色名称"
|
|
clearable
|
|
class="!w-[180px]"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="角色标识:" prop="code">
|
|
<el-input
|
|
v-model="form.code"
|
|
placeholder="请输入角色标识"
|
|
clearable
|
|
class="!w-[180px]"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态:" prop="status">
|
|
<el-select
|
|
v-model="form.status"
|
|
placeholder="请选择状态"
|
|
clearable
|
|
class="!w-[180px]"
|
|
>
|
|
<el-option label="已启用" value="1" />
|
|
<el-option label="已停用" value="0" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon('search')"
|
|
: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"
|
|
@refresh="onSearch"
|
|
>
|
|
<template #buttons>
|
|
<el-button
|
|
type="primary"
|
|
:icon="useRenderIcon(AddFill)"
|
|
@click="openDialog()"
|
|
>
|
|
新增角色
|
|
</el-button>
|
|
</template>
|
|
<template v-slot="{ size, dynamicColumns }">
|
|
<pure-table
|
|
align-whole="center"
|
|
showOverflowTooltip
|
|
table-layout="auto"
|
|
:loading="loading"
|
|
:size="size"
|
|
adaptive
|
|
:adaptiveConfig="{ offsetBottom: 108 }"
|
|
:data="dataList"
|
|
:columns="dynamicColumns"
|
|
:pagination="pagination"
|
|
:paginationSmall="size === 'small' ? true : false"
|
|
:header-cell-style="{
|
|
background: 'var(--el-fill-color-light)',
|
|
color: 'var(--el-text-color-primary)'
|
|
}"
|
|
@selection-change="handleSelectionChange"
|
|
@page-size-change="handleSizeChange"
|
|
@page-current-change="handleCurrentChange"
|
|
>
|
|
<template #operation="{ row }">
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(EditPen)"
|
|
@click="openDialog('修改', row)"
|
|
>
|
|
修改
|
|
</el-button>
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Menu)"
|
|
@click="handleMenu"
|
|
>
|
|
菜单权限
|
|
</el-button>
|
|
<el-popconfirm
|
|
:title="`是否确认删除角色名称为${row.name}的这条数据`"
|
|
@confirm="handleDelete(row)"
|
|
>
|
|
<template #reference>
|
|
<el-button
|
|
class="reset-margin"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Delete)"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
<!-- <el-dropdown>
|
|
<el-button
|
|
class="ml-3 mt-[2px]"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(More)"
|
|
/>
|
|
<template #dropdown>
|
|
<el-dropdown-menu>
|
|
<el-dropdown-item>
|
|
<el-button
|
|
:class="buttonClass"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Menu)"
|
|
@click="handleMenu"
|
|
>
|
|
菜单权限
|
|
</el-button>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-button
|
|
:class="buttonClass"
|
|
link
|
|
type="primary"
|
|
:size="size"
|
|
:icon="useRenderIcon(Database)"
|
|
@click="handleDatabase"
|
|
>
|
|
数据权限
|
|
</el-button>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown> -->
|
|
</template>
|
|
</pure-table>
|
|
</template>
|
|
</PureTableBar>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
:deep(.el-dropdown-menu__item i) {
|
|
margin: 0;
|
|
}
|
|
|
|
.main-content {
|
|
margin: 24px 24px 0 !important;
|
|
}
|
|
|
|
.search-form {
|
|
:deep(.el-form-item) {
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
</style>
|