|
@@ -13,28 +13,10 @@
|
|
<el-form-item label="角色标识">
|
|
<el-form-item label="角色标识">
|
|
<el-tag>{{ dataScopeForm.code }}</el-tag>
|
|
<el-tag>{{ dataScopeForm.code }}</el-tag>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <!-- 分配角色的数据权限对话框 -->
|
|
|
|
- <el-form-item label="权限范围" v-if="actionScopeType === 'data'">
|
|
|
|
- <el-select v-model="dataScopeForm.dataScope">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in dataScopeDictDatas"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value"
|
|
|
|
- />
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
<!-- 分配角色的菜单权限对话框 -->
|
|
<!-- 分配角色的菜单权限对话框 -->
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
- <el-form-item
|
|
|
|
- label="权限范围"
|
|
|
|
- v-if="
|
|
|
|
- actionScopeType === 'menu' ||
|
|
|
|
- dataScopeForm.dataScope === SystemDataScopeEnum.DEPT_CUSTOM
|
|
|
|
- "
|
|
|
|
- style="display: flex"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-form-item label="权限范围" style="display: flex">
|
|
<el-card class="card" shadow="never">
|
|
<el-card class="card" shadow="never">
|
|
<template #header>
|
|
<template #header>
|
|
父子联动(选中父节点,自动选择子节点):
|
|
父子联动(选中父节点,自动选择子节点):
|
|
@@ -94,10 +76,8 @@ import * as RoleApi from '@/api/system/role'
|
|
import type { ElTree } from 'element-plus'
|
|
import type { ElTree } from 'element-plus'
|
|
import type { FormExpose } from '@/components/Form'
|
|
import type { FormExpose } from '@/components/Form'
|
|
import { handleTree, defaultProps } from '@/utils/tree'
|
|
import { handleTree, defaultProps } from '@/utils/tree'
|
|
-import { SystemDataScopeEnum } from '@/utils/constants'
|
|
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
import * as MenuApi from '@/api/system/menu'
|
|
import * as MenuApi from '@/api/system/menu'
|
|
-import * as DeptApi from '@/api/system/dept'
|
|
|
|
import * as PermissionApi from '@/api/system/permission'
|
|
import * as PermissionApi from '@/api/system/permission'
|
|
// ========== CRUD 相关 ==========
|
|
// ========== CRUD 相关 ==========
|
|
const actionLoading = ref(false) // 遮罩层
|
|
const actionLoading = ref(false) // 遮罩层
|
|
@@ -130,50 +110,27 @@ const openModal = async (type: string, row: RoleApi.RoleVO) => {
|
|
dataScopeForm.code = row.code
|
|
dataScopeForm.code = row.code
|
|
actionScopeType.value = type
|
|
actionScopeType.value = type
|
|
dialogScopeVisible.value = true
|
|
dialogScopeVisible.value = true
|
|
- if (type === 'menu') {
|
|
|
|
- const menuRes = await MenuApi.getSimpleMenusList()
|
|
|
|
- treeOptions.value = handleTree(menuRes)
|
|
|
|
- const role = await PermissionApi.listRoleMenusApi(row.id)
|
|
|
|
- if (role) {
|
|
|
|
- role?.forEach((item: any) => {
|
|
|
|
- unref(treeRef)?.setChecked(item, true, false)
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
- } else if (type === 'data') {
|
|
|
|
- const deptRes = await DeptApi.getSimpleDeptList()
|
|
|
|
- treeOptions.value = handleTree(deptRes)
|
|
|
|
- const role = await RoleApi.getRole(row.id)
|
|
|
|
- dataScopeForm.dataScope = role.dataScope
|
|
|
|
- if (role.dataScopeDeptIds) {
|
|
|
|
- role.dataScopeDeptIds?.forEach((item: any) => {
|
|
|
|
- unref(treeRef)?.setChecked(item, true, false)
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
|
|
+ const menuRes = await MenuApi.getSimpleMenusList()
|
|
|
|
+ treeOptions.value = handleTree(menuRes)
|
|
|
|
+ const role = await PermissionApi.listRoleMenusApi(row.id)
|
|
|
|
+ if (role) {
|
|
|
|
+ role?.forEach((item: any) => {
|
|
|
|
+ unref(treeRef)?.setChecked(item, true, false)
|
|
|
|
+ })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// 保存权限
|
|
// 保存权限
|
|
const submitScope = async () => {
|
|
const submitScope = async () => {
|
|
- if ('data' === actionScopeType.value) {
|
|
|
|
- const data = ref<PermissionApi.PermissionAssignRoleDataScopeReqVO>({
|
|
|
|
- roleId: dataScopeForm.id,
|
|
|
|
- dataScope: dataScopeForm.dataScope,
|
|
|
|
- dataScopeDeptIds:
|
|
|
|
- dataScopeForm.dataScope !== SystemDataScopeEnum.DEPT_CUSTOM
|
|
|
|
- ? []
|
|
|
|
- : (treeRef.value!.getCheckedKeys(false) as unknown as Array<number>)
|
|
|
|
- })
|
|
|
|
- await PermissionApi.assignRoleDataScopeApi(data.value)
|
|
|
|
- } else if ('menu' === actionScopeType.value) {
|
|
|
|
- const data = ref<PermissionApi.PermissionAssignRoleMenuReqVO>({
|
|
|
|
- roleId: dataScopeForm.id,
|
|
|
|
- menuIds: [
|
|
|
|
- ...(treeRef.value!.getCheckedKeys(false) as unknown as Array<number>),
|
|
|
|
- ...(treeRef.value!.getHalfCheckedKeys() as unknown as Array<number>)
|
|
|
|
- ]
|
|
|
|
- })
|
|
|
|
- await PermissionApi.assignRoleMenuApi(data.value)
|
|
|
|
- }
|
|
|
|
|
|
+ const data = ref<PermissionApi.PermissionAssignRoleMenuReqVO>({
|
|
|
|
+ roleId: dataScopeForm.id,
|
|
|
|
+ menuIds: [
|
|
|
|
+ ...(treeRef.value!.getCheckedKeys(false) as unknown as Array<number>),
|
|
|
|
+ ...(treeRef.value!.getHalfCheckedKeys() as unknown as Array<number>)
|
|
|
|
+ ]
|
|
|
|
+ })
|
|
|
|
+ await PermissionApi.assignRoleMenuApi(data.value)
|
|
|
|
+
|
|
message.success(t('common.updateSuccess'))
|
|
message.success(t('common.updateSuccess'))
|
|
dialogScopeVisible.value = false
|
|
dialogScopeVisible.value = false
|
|
}
|
|
}
|
|
@@ -193,10 +150,3 @@ onMounted(() => {
|
|
init()
|
|
init()
|
|
})
|
|
})
|
|
</script>
|
|
</script>
|
|
-<style scoped>
|
|
|
|
-.card {
|
|
|
|
- width: 100%;
|
|
|
|
- max-height: 400px;
|
|
|
|
- overflow-y: scroll;
|
|
|
|
-}
|
|
|
|
-</style>
|
|
|