|
@@ -48,7 +48,7 @@ public class YeWeiHuiController {
|
|
private RbMapper rbMapper;
|
|
private RbMapper rbMapper;
|
|
|
|
|
|
@GetMapping("/yeweihui/home.html")
|
|
@GetMapping("/yeweihui/home.html")
|
|
- public ModelAndView yeweihui(ModelMap model,@RequestParam(value = "userId") Long userId) {
|
|
|
|
|
|
+ public ModelAndView yeweihui(ModelMap model,@RequestParam(value = "userId") Long userId, @RequestParam(value = "showQZ", required = false, defaultValue = "-") String showQZ) {
|
|
|
|
|
|
// List<QzTask> taskList = qzTaskService.selectAll(1225321682867105793L);
|
|
// List<QzTask> taskList = qzTaskService.selectAll(1225321682867105793L);
|
|
// List<sysUptownUnit> rbList = rbService.selectAll(1225321682867105793L);
|
|
// List<sysUptownUnit> rbList = rbService.selectAll(1225321682867105793L);
|
|
@@ -57,6 +57,7 @@ public class YeWeiHuiController {
|
|
model.put("taskList", YvanUtil.toJsonPretty(taskList));
|
|
model.put("taskList", YvanUtil.toJsonPretty(taskList));
|
|
model.put("rbList", YvanUtil.toJsonPretty(rbList));
|
|
model.put("rbList", YvanUtil.toJsonPretty(rbList));
|
|
model.put("user_id", "\""+userId+"\"");
|
|
model.put("user_id", "\""+userId+"\"");
|
|
|
|
+ model.put("showQZ", "\""+showQZ+"\"");
|
|
|
|
|
|
return new ModelAndView("/yeweihui/home.ftl", model);
|
|
return new ModelAndView("/yeweihui/home.ftl", model);
|
|
}
|
|
}
|