Commit 75c4d660 by YunaiV

修复角色管理数据权限回显问题

parent 22e5b45d
...@@ -91,6 +91,7 @@ const open = async (row: RoleApi.RoleVO) => { ...@@ -91,6 +91,7 @@ const open = async (row: RoleApi.RoleVO) => {
defineExpose({ open }) // 提供 open 方法,用于打开弹窗 defineExpose({ open }) // 提供 open 方法,用于打开弹窗
/** 提交表单 */ /** 提交表单 */
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
const submitForm = async () => { const submitForm = async () => {
// 校验表单 // 校验表单
if (!formRef) return if (!formRef) return
...@@ -109,6 +110,8 @@ const submitForm = async () => { ...@@ -109,6 +110,8 @@ const submitForm = async () => {
await PermissionApi.assignRoleMenu(data) await PermissionApi.assignRoleMenu(data)
message.success(t('common.updateSuccess')) message.success(t('common.updateSuccess'))
dialogVisible.value = false dialogVisible.value = false
// 发送操作成功的事件
emit('success')
} finally { } finally {
formLoading.value = false formLoading.value = false
} }
......
...@@ -107,6 +107,7 @@ const open = async (row: RoleApi.RoleVO) => { ...@@ -107,6 +107,7 @@ const open = async (row: RoleApi.RoleVO) => {
defineExpose({ open }) // 提供 open 方法,用于打开弹窗 defineExpose({ open }) // 提供 open 方法,用于打开弹窗
/** 提交表单 */ /** 提交表单 */
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
const submitForm = async () => { const submitForm = async () => {
formLoading.value = true formLoading.value = true
try { try {
...@@ -121,6 +122,8 @@ const submitForm = async () => { ...@@ -121,6 +122,8 @@ const submitForm = async () => {
await PermissionApi.assignRoleDataScope(data) await PermissionApi.assignRoleDataScope(data)
message.success(t('common.updateSuccess')) message.success(t('common.updateSuccess'))
dialogVisible.value = false dialogVisible.value = false
// 发送操作成功的事件
emit('success')
} finally { } finally {
formLoading.value = false formLoading.value = false
} }
......
...@@ -156,9 +156,9 @@ ...@@ -156,9 +156,9 @@
<!-- 表单弹窗:添加/修改 --> <!-- 表单弹窗:添加/修改 -->
<RoleForm ref="formRef" @success="getList" /> <RoleForm ref="formRef" @success="getList" />
<!-- 表单弹窗:菜单权限 --> <!-- 表单弹窗:菜单权限 -->
<RoleAssignMenuForm ref="assignMenuFormRef" /> <RoleAssignMenuForm ref="assignMenuFormRef" @success="getList" />
<!-- 表单弹窗:数据权限 --> <!-- 表单弹窗:数据权限 -->
<RoleDataPermissionForm ref="dataPermissionFormRef" /> <RoleDataPermissionForm ref="dataPermissionFormRef" @success="getList" />
</template> </template>
<script lang="ts" name="SystemRole" setup> <script lang="ts" name="SystemRole" setup>
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment