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

123 lines
4.2 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-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-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'
import { useDictStore } from '@/stores/modules/dict'
2024-11-12 18:56:33 +08:00
import {getRoleList,deleteRole} from '@/api/role/role'
import RolePopup from './components/rolePopup.vue'
import { reactive, ref } from 'vue'
2024-10-29 21:14:40 +08:00
const { rolePopupVisible, permissionUnitVisible, rolePopupTitle, permissionUnitTitle, rolePopupData, permissionUnitData } = useCount()
function useCount() {
const rolePopupVisible = ref(false)
const permissionUnitVisible = ref(false)
const rolePopupTitle = ref()
const permissionUnitTitle = ref()
const rolePopupData = ref<Role.RoleBO>({} as Role.RoleBO)
const permissionUnitData = ref<Role.RoleBO>({} as Role.RoleBO)
// const permissionUnitData = ref<Role.Permission[]>([])
return { rolePopupVisible, permissionUnitVisible, rolePopupTitle, permissionUnitTitle, rolePopupData, permissionUnitData }
}
const dictStore = useDictStore()
let openType = ''
2024-11-12 18:56:33 +08:00
const rolePopup = ref()
2024-10-29 21:14:40 +08:00
// ProTable 实例
const proTable = ref<ProTableInstance>()
// 如果你想在请求之前对当前请求参数做一些操作可以自定义如下函数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)
}
// 表格配置项
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' },
minWidth: 180,
},
{
prop: 'remark',
label: '描述',
minWidth: 380,
},
2024-11-12 18:56:33 +08:00
{
prop: 'state',
label: '状态',
minWidth: 100,
},
2024-10-29 21:14:40 +08:00
{ prop: 'operation', label: '操作', fixed: 'right', width: 330 },
])
// 删除角色信息
const deleteAccount = async (params: Role.RoleBO) => {
if (params.id) {
2024-10-31 08:51:30 +08:00
await useHandleData(deleteRole, { id:[params.id] }, '删除所选角色信息')
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[]) => {
await useHandleData(deleteRole, { id }, '删除所选角色信息')
proTable.value?.clearSelection()
proTable.value?.getTableList()
}
// 打开 drawer(新增、查看、编辑)
2024-11-12 18:56:33 +08:00
const openDrawer = (titleType: string, row: Partial<Role.RoleBO> = {}) => {
rolePopup.value?.open(titleType, row)
2024-10-29 21:14:40 +08:00
}
</script>
2024-10-16 11:27:17 +08:00