mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-04 12:18:42 +08:00 
			
		
		
		
	fix:用户详情不显示所属部门
This commit is contained in:
		@@ -123,7 +123,10 @@ public class UserController {
 | 
				
			|||||||
    @Parameter(name = "id", description = "编号", required = true, example = "1024")
 | 
					    @Parameter(name = "id", description = "编号", required = true, example = "1024")
 | 
				
			||||||
    @PreAuthorize("@ss.hasPermission('system:user:query')")
 | 
					    @PreAuthorize("@ss.hasPermission('system:user:query')")
 | 
				
			||||||
    public CommonResult<UserRespVO> getUser(@RequestParam("id") Long id) {
 | 
					    public CommonResult<UserRespVO> getUser(@RequestParam("id") Long id) {
 | 
				
			||||||
        return success(UserConvert.INSTANCE.convert(userService.getUser(id)));
 | 
					        AdminUserDO user = userService.getUser(id);
 | 
				
			||||||
 | 
					        // 获得部门数据
 | 
				
			||||||
 | 
					        DeptDO dept = deptService.getDept(user.getDeptId());
 | 
				
			||||||
 | 
					        return success(UserConvert.INSTANCE.convert(user).setDept(UserConvert.INSTANCE.convert(dept)));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @GetMapping("/export")
 | 
					    @GetMapping("/export")
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user