Skip to content

Commit

Permalink
修复角色管理数据权限回显问题
Browse files Browse the repository at this point in the history
  • Loading branch information
YunaiV committed Apr 19, 2023
1 parent 22e5b45 commit 75c4d66
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/views/system/role/RoleAssignMenuForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ const open = async (row: RoleApi.RoleVO) => {
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
/** 提交表单 */
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
const submitForm = async () => {
// 校验表单
if (!formRef) return
Expand All @@ -109,6 +110,8 @@ const submitForm = async () => {
await PermissionApi.assignRoleMenu(data)
message.success(t('common.updateSuccess'))
dialogVisible.value = false
// 发送操作成功的事件
emit('success')
} finally {
formLoading.value = false
}
Expand Down
3 changes: 3 additions & 0 deletions src/views/system/role/RoleDataPermissionForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ const open = async (row: RoleApi.RoleVO) => {
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
/** 提交表单 */
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
const submitForm = async () => {
formLoading.value = true
try {
Expand All @@ -121,6 +122,8 @@ const submitForm = async () => {
await PermissionApi.assignRoleDataScope(data)
message.success(t('common.updateSuccess'))
dialogVisible.value = false
// 发送操作成功的事件
emit('success')
} finally {
formLoading.value = false
}
Expand Down
4 changes: 2 additions & 2 deletions src/views/system/role/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@
<!-- 表单弹窗:添加/修改 -->
<RoleForm ref="formRef" @success="getList" />
<!-- 表单弹窗:菜单权限 -->
<RoleAssignMenuForm ref="assignMenuFormRef" />
<RoleAssignMenuForm ref="assignMenuFormRef" @success="getList" />
<!-- 表单弹窗:数据权限 -->
<RoleDataPermissionForm ref="dataPermissionFormRef" />
<RoleDataPermissionForm ref="dataPermissionFormRef" @success="getList" />
</template>
<script lang="ts" name="SystemRole" setup>
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
Expand Down

0 comments on commit 75c4d66

Please sign in to comment.