|
@@ -69,6 +69,15 @@ public class YeWeiHuiController {
|
|
|
return new ModelAndView("/yeweihui/home.ftl", model);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/yeweihui/tuangouHome.html")
|
|
|
+ public ModelAndView yeweihuiTuangouHome(ModelMap model, @RequestParam(value = "userId") Long userId, @RequestParam(value = "show", required = false, defaultValue = "-") String show) {
|
|
|
+
|
|
|
+ model.put("user_id", "\"" + userId + "\"");
|
|
|
+ model.put("show", "\"" + show + "\"");
|
|
|
+
|
|
|
+ return new ModelAndView("/yeweihui/tuangouHome.ftl", model);
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/yeweihui/qiuzhuDetail.html")
|
|
|
public ModelAndView qiuzhudetail(@Pd(name = "taskId") Long taskId, @Pd(name = "userId") Long userId, ModelMap model) throws JsonProcessingException {
|
|
|
|