|
@@ -60,9 +60,15 @@ public class HomeController {
|
|
|
return Model.newSuccess(qzTaskService.queryQzTask(taskStatus));
|
|
|
}
|
|
|
|
|
|
- //小区求助的查看
|
|
|
- @GetMapping("/home/home/taskQuery")
|
|
|
- public Model<List<QzTaskReply>> taskQuery(@Pd(name = "taskId")Long taskId){
|
|
|
- return Model.newSuccess(qzTaskReplyService.taskQuery(taskId));
|
|
|
- }
|
|
|
+ //小区求助的查看
|
|
|
+ @GetMapping("/home/home/taskQuery")
|
|
|
+ public Model<List<QzTaskReply>> taskQuery(@Pd(name = "taskId") Long taskId) {
|
|
|
+ return Model.newSuccess(qzTaskReplyService.taskQuery(taskId));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/home/home_new.html")
|
|
|
+ public ModelAndView hmoe_new(ModelMap model) {
|
|
|
+ model.put("user", new JsonWapper("{\"www\": \"er\"}"));
|
|
|
+ return new ModelAndView("/home/home_new.ftl", model);
|
|
|
+ }
|
|
|
}
|