Browse Source

feat: [试验管理] 预填表单选择审核员

master
memorylkf 3 months ago
parent
commit
9877bafd69
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java View File

@ -450,7 +450,7 @@ public class SysUserController extends BaseController
@GetMapping("/studyUser")
public AjaxResult studyUser(Long studyId,Long studySubjectId,String permit)
{
if(studyId==null || studyId.longValue()<=0){
if((studyId==null || studyId.longValue()<=0) && StringUtils.isBlank(permit)){
return AjaxResult.success(new ArrayList<>());
}
List<DeptUserTreeDto> depts = userService.selectStudyUser(studyId,studySubjectId,permit);

Loading…
Cancel
Save