yuliang 5 jaren geleden
bovenliggende
commit
cbd60e05bb

+ 1 - 1
whepi-ui/templates/yeweihui/qiuzhu.js

@@ -154,5 +154,5 @@ function makeList3(tasks) {
 }
 
 function itemSelect(taskId) {
-  window.location.href = "/yeweihui/qiuzhudetail.html?taskId=" + taskId;
+  window.location.href = "/yeweihui/qiuzhuDetail.html?taskId=" + taskId;
 }

+ 2 - 2
whepi-web/src/main/java/com/bofeng/wx/controller/YeWeiHuiController.java

@@ -50,7 +50,7 @@ public class YeWeiHuiController {
         return new ModelAndView("/yeweihui/home.ftl", model);
     }
 
-    @GetMapping("/yeweihui/qiuzhudetail.html")
+    @GetMapping("/yeweihui/qiuzhuDetail.html")
     public ModelAndView qiuzhudetail(@Pd(name = "taskId") Long taskId, ModelMap model) throws JsonProcessingException {
 
         QzTask task = qzTaskService.queryByTaskId(taskId);
@@ -89,7 +89,7 @@ public class YeWeiHuiController {
         model.put("taskJson", new JsonWapper(task));
         model.put("task", task);
 
-        return new ModelAndView("/yeweihui/qiuzhudetail.ftl", model);
+        return new ModelAndView("/yeweihui/qiuzhuDetail.ftl", model);
     }
 
     @PostMapping("/yeweihui/qiuzhu/reply.json")