|
@@ -0,0 +1,19 @@
|
|
|
|
+package com.gonghang.h5clientapp.web;
|
|
|
|
+
|
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+
|
|
|
|
+@Controller
|
|
|
|
+@RequestMapping("/mobile/robotH5")
|
|
|
|
+public class MobileController {
|
|
|
|
+ @GetMapping("/index")
|
|
|
|
+ public String index() {
|
|
|
|
+ return "h5/index";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @GetMapping("/taskReport")
|
|
|
|
+ public String taskReport() {
|
|
|
|
+ return "h5/taskReport";
|
|
|
|
+ }
|
|
|
|
+}
|