2024-10-16 11:27:17 +08:00
|
|
|
|
<template>
|
2024-10-29 21:14:40 +08:00
|
|
|
|
<div class='table-box'>
|
|
|
|
|
|
<ProTable
|
|
|
|
|
|
ref='proTable'
|
|
|
|
|
|
:columns='columns'
|
|
|
|
|
|
:request-api="getTableList"
|
|
|
|
|
|
>
|
|
|
|
|
|
<!-- :requestApi="getRoleList" -->
|
|
|
|
|
|
<!-- 表格 header 按钮 -->
|
|
|
|
|
|
<template #tableHeader='scope'>
|
2025-03-26 15:42:40 +08:00
|
|
|
|
<el-button v-auth.role="'add'" type='primary' :icon='CirclePlus' @click="openDrawer('add')">新增</el-button>
|
2024-12-04 19:54:56 +08:00
|
|
|
|
<el-button v-auth.role="'delete'" type='danger' :icon='Delete' plain :disabled='!scope.isSelected'
|
2024-10-29 21:14:40 +08:00
|
|
|
|
@click='batchDelete(scope.selectedListIds)'>
|
2024-12-04 20:00:04 +08:00
|
|
|
|
删除
|
2024-10-29 21:14:40 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<!-- 表格操作 -->
|
|
|
|
|
|
<template #operation='scope'>
|
2025-05-29 10:49:26 +08:00
|
|
|
|
<el-button v-auth.role="'edit'" type='primary' link :icon='EditPen' @click="openDrawer('edit', scope.row)" :disabled="scope.row.code == 'root'">编辑</el-button>
|
|
|
|
|
|
<el-button v-auth.role="'delete'" type='primary' link :icon='Delete' @click='deleteAccount(scope.row)' :disabled="scope.row.code == 'root'">删除</el-button>
|
|
|
|
|
|
<el-button v-auth.role="'SetPermissions'" type='primary' link :icon='Share' @click="openDrawer('设置权限', scope.row)" :disabled="scope.row.code == 'root'">设置权限</el-button>
|
2024-10-16 11:27:17 +08:00
|
|
|
|
</template>
|
2024-10-16 15:52:50 +08:00
|
|
|
|
|
2024-10-29 21:14:40 +08:00
|
|
|
|
</ProTable>
|
|
|
|
|
|
</div>
|
2024-11-12 18:56:33 +08:00
|
|
|
|
<RolePopup :refresh-table='proTable?.getTableList' ref='rolePopup' />
|
2024-11-14 11:34:25 +08:00
|
|
|
|
<RoleResourcePopup :refresh-table='proTable?.getTableList' ref='roleResourcePopup' />
|
2024-10-29 21:14:40 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang='tsx' name='useRole'>
|
2024-11-18 09:02:57 +08:00
|
|
|
|
import { type Role } from '@/api/user/interface/role'
|
|
|
|
|
|
import { type Function } from '@/api/user/interface/function'
|
2024-10-29 21:14:40 +08:00
|
|
|
|
import { useHandleData } from '@/hooks/useHandleData'
|
|
|
|
|
|
import ProTable from '@/components/ProTable/index.vue'
|
2024-11-12 18:56:33 +08:00
|
|
|
|
import type{ ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
|
2024-10-29 21:14:40 +08:00
|
|
|
|
import { CirclePlus, Delete, EditPen, Share, Download, Upload, View, Refresh } from '@element-plus/icons-vue'
|
2024-11-18 09:02:57 +08:00
|
|
|
|
import {getRoleList,deleteRole,getFunctionList} from '@/api/user/role/index'
|
2024-11-12 18:56:33 +08:00
|
|
|
|
import RolePopup from './components/rolePopup.vue'
|
2024-11-14 11:34:25 +08:00
|
|
|
|
import RoleResourcePopup from './components/roleResourcePopup.vue'
|
|
|
|
|
|
import { onMounted, reactive, ref } from 'vue'
|
|
|
|
|
|
import {useDictStore} from '@/stores/modules/dict'
|
2025-01-15 09:35:36 +08:00
|
|
|
|
defineOptions({
|
|
|
|
|
|
name: 'role'
|
|
|
|
|
|
})
|
2024-11-12 18:56:33 +08:00
|
|
|
|
const rolePopup = ref()
|
2024-11-14 11:34:25 +08:00
|
|
|
|
const roleResourcePopup = ref()
|
|
|
|
|
|
const dictStore = useDictStore()
|
2024-10-29 21:14:40 +08:00
|
|
|
|
// ProTable 实例
|
|
|
|
|
|
const proTable = ref<ProTableInstance>()
|
2024-11-14 11:34:25 +08:00
|
|
|
|
const functionList = ref<Function.ResFunction[]>([])
|
2024-10-29 21:14:40 +08:00
|
|
|
|
// 如果你想在请求之前对当前请求参数做一些操作,可以自定义如下函数:params 为当前所有的请求参数(包括分页),最后返回请求列表接口
|
|
|
|
|
|
// 默认不做操作就直接在 ProTable 组件上绑定 :requestApi="getUserList"
|
|
|
|
|
|
const getTableList = (params: any) => {
|
|
|
|
|
|
let newParams = JSON.parse(JSON.stringify(params))
|
|
|
|
|
|
newParams.createTime && (newParams.startTime = newParams.createTime[0])
|
|
|
|
|
|
newParams.createTime && (newParams.endTime = newParams.createTime[1])
|
|
|
|
|
|
delete newParams.createTime
|
|
|
|
|
|
return getRoleList(newParams)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-14 11:34:25 +08:00
|
|
|
|
|
|
|
|
|
|
// 初始化时获取角色列表
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
|
const response = await getFunctionList()
|
|
|
|
|
|
functionList.value = response.data as unknown as Function.ResFunction[]
|
|
|
|
|
|
//console.log(functionList.value)
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2024-10-29 21:14:40 +08:00
|
|
|
|
// 表格配置项
|
|
|
|
|
|
const columns = reactive<ColumnProps<Role.RoleBO>[]>([
|
2024-11-15 16:31:48 +08:00
|
|
|
|
{
|
|
|
|
|
|
type: 'selection',
|
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
|
width: 70,
|
|
|
|
|
|
selectable(row, index) {
|
|
|
|
|
|
return ![0, 1].includes(row.type);//类型是0-超级管理员,1-管理员,不可选择
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
type: 'index',
|
|
|
|
|
|
fixed: 'left',
|
|
|
|
|
|
width: 70,
|
|
|
|
|
|
label: '序号'
|
|
|
|
|
|
},
|
2024-10-29 18:31:25 +08:00
|
|
|
|
{
|
2024-10-29 21:14:40 +08:00
|
|
|
|
prop: 'name',
|
|
|
|
|
|
label: '名称',
|
|
|
|
|
|
search: { el: 'input' },
|
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
prop: 'code',
|
|
|
|
|
|
label: '编码',
|
|
|
|
|
|
search: { el: 'input' },
|
2024-11-14 19:24:36 +08:00
|
|
|
|
minWidth: 200,
|
2024-10-29 21:14:40 +08:00
|
|
|
|
},
|
2024-12-04 08:49:42 +08:00
|
|
|
|
{
|
|
|
|
|
|
prop: 'type',
|
|
|
|
|
|
label: '类型',
|
|
|
|
|
|
minWidth: 200,
|
|
|
|
|
|
render: (scope) => {
|
|
|
|
|
|
const typeMap: { [key: number]: { label: string; type: string } } = {
|
|
|
|
|
|
0: { label: '超级管理员', type: 'primary' },
|
|
|
|
|
|
1: { label: '管理员角色', type: 'success' },
|
|
|
|
|
|
2: { label: '普通角色', type: 'info' },
|
|
|
|
|
|
};
|
|
|
|
|
|
const typeInfo = typeMap[scope.row.type] || { label: '未知', type: 'danger' };
|
|
|
|
|
|
return (
|
|
|
|
|
|
<el-tag type={typeInfo.type}>{typeInfo.label}</el-tag>
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
2024-10-29 21:14:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
prop: 'remark',
|
|
|
|
|
|
label: '描述',
|
2024-11-14 19:24:36 +08:00
|
|
|
|
minWidth: 300,
|
2024-10-29 21:14:40 +08:00
|
|
|
|
},
|
2024-11-12 18:56:33 +08:00
|
|
|
|
{
|
|
|
|
|
|
prop: 'state',
|
|
|
|
|
|
label: '状态',
|
|
|
|
|
|
minWidth: 100,
|
2024-11-14 11:34:25 +08:00
|
|
|
|
render: scope => {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<el-tag type={scope.row.state ? 'success' : 'danger'} > {scope.row.state ? '正常' : '删除'} </el-tag>
|
|
|
|
|
|
)
|
|
|
|
|
|
},
|
2024-11-12 18:56:33 +08:00
|
|
|
|
},
|
2024-11-15 16:31:48 +08:00
|
|
|
|
{ prop: 'operation',
|
|
|
|
|
|
label: '操作',
|
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
|
width: 250,
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2024-10-29 21:14:40 +08:00
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
// 删除角色信息
|
|
|
|
|
|
const deleteAccount = async (params: Role.RoleBO) => {
|
|
|
|
|
|
if (params.id) {
|
2024-11-14 11:34:25 +08:00
|
|
|
|
await useHandleData(deleteRole, [params.id], '删除所选角色信息')
|
2024-10-31 08:51:30 +08:00
|
|
|
|
proTable.value?.clearSelection()
|
|
|
|
|
|
proTable.value?.getTableList()
|
2024-10-16 11:27:17 +08:00
|
|
|
|
}
|
2024-10-29 21:14:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 批量删除角色信息
|
|
|
|
|
|
const batchDelete = async (id: string[]) => {
|
2024-11-14 11:34:25 +08:00
|
|
|
|
await useHandleData(deleteRole, id , '删除所选角色信息')
|
2024-10-29 21:14:40 +08:00
|
|
|
|
proTable.value?.clearSelection()
|
|
|
|
|
|
proTable.value?.getTableList()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 打开 drawer(新增、查看、编辑)
|
2024-11-12 18:56:33 +08:00
|
|
|
|
const openDrawer = (titleType: string, row: Partial<Role.RoleBO> = {}) => {
|
2024-11-14 11:34:25 +08:00
|
|
|
|
if(titleType==='设置权限'){
|
|
|
|
|
|
roleResourcePopup.value?.open(titleType, row,functionList.value)
|
|
|
|
|
|
}else{
|
|
|
|
|
|
rolePopup.value?.open(titleType, row)
|
|
|
|
|
|
}
|
2024-10-29 21:14:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|
2024-10-16 11:27:17 +08:00
|
|
|
|
|