|
|
|
@ -96,9 +96,13 @@ public class SysUserExamineController extends BaseController {
|
|
|
|
|
@Log(title = "用户审核", businessType = BusinessType.PRINT)
|
|
|
|
|
@GetMapping("/examineprint/{userId}")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public SysUser paint(@PathVariable("userId") Long userId)
|
|
|
|
|
public String paint(@PathVariable("userId") Long userId,ModelMap mmap)
|
|
|
|
|
{
|
|
|
|
|
return userService.selectUserById(userId);
|
|
|
|
|
List<SysRole> roles = roleService.selectRolesByUserId(userId);
|
|
|
|
|
mmap.put("user",userService.selectUserById(userId));
|
|
|
|
|
mmap.put("roles", SysUser.isAdmin(userId) ? roles : roles.stream().filter(r -> !r.isAdmin()).collect(Collectors.toList()));
|
|
|
|
|
mmap.put("posts", postService.selectPostsByUserId(userId));
|
|
|
|
|
return prefix + "/examineprint";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|