Files
pqs-9100_client/frontend/src/views/authority/role/index.vue

126 lines
4.4 KiB
Vue
Raw Normal View History

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'>
<el-button type='primary' :icon='CirclePlus' @click="openDrawer('新增角色')">新增</el-button>
2024-11-12 18:56:33 +08:00
<el-button type='danger' :icon='Delete' plain :disabled='!scope.isSelected'
2024-10-29 21:14:40 +08:00
@click='batchDelete(scope.selectedListIds)'>
批量删除
</el-button>
</template>
<!-- 表格操作 -->
<template #operation='scope'>
<el-button type='primary' link :icon='EditPen' @click="openDrawer('编辑角色', scope.row)">编辑</el-button>
<el-button type='primary' link :icon='Delete' @click='deleteAccount(scope.row)'>删除</el-button>
<el-button type='primary' link :icon='Share' @click="openDrawer('设置权限', scope.row)">设置权限</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-12 18:56:33 +08:00
import { type Role } from '@/api/role/interface'
2024-11-14 11:34:25 +08:00
import { type Function } from '@/api/function/interface'
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-14 11:34:25 +08:00
import {getRoleList,deleteRole,getFunctionList} from '@/api/role/role'
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'
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>[]>([
{ type: 'selection', fixed: 'left', width: 70 },
{ type: 'index', fixed: 'left', width: 70, label: '序号' },
{
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
},
{
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-14 11:34:25 +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