update

1 个父辈 6271a375
...@@ -8,6 +8,7 @@ target/ ...@@ -8,6 +8,7 @@ target/
.project .project
.settings .settings
.springBeans .springBeans
.class
### IntelliJ IDEA ### ### IntelliJ IDEA ###
.idea .idea
......
...@@ -27,7 +27,7 @@ public class ActivityController extends BaseController { ...@@ -27,7 +27,7 @@ public class ActivityController extends BaseController {
@RequestMapping("/activityList") @RequestMapping("/activityList")
public ModelAndView activityList() { public ModelAndView activityList() {
ModelAndView mv = new ModelAndView("/pc/activity/activityindex"); ModelAndView mv = new ModelAndView("/pc/activity/activityList");
return mv; return mv;
} }
......
...@@ -10,6 +10,6 @@ public class GoodsController { ...@@ -10,6 +10,6 @@ public class GoodsController {
@RequestMapping("/goodsList") @RequestMapping("/goodsList")
public ModelAndView goodsList() { public ModelAndView goodsList() {
return new ModelAndView(""); return new ModelAndView("/pc/goods/goodsList");
} }
} }
...@@ -10,7 +10,7 @@ public class PrizeController { ...@@ -10,7 +10,7 @@ public class PrizeController {
@RequestMapping("/prizeList") @RequestMapping("/prizeList")
public ModelAndView prizeList() { public ModelAndView prizeList() {
return new ModelAndView(""); return new ModelAndView("/pc/prize/prizeList");
} }
} }
...@@ -25,6 +25,11 @@ public class ReportController extends BaseController { ...@@ -25,6 +25,11 @@ public class ReportController extends BaseController {
ModelAndView mv = new ModelAndView("/pc/report/goods"); ModelAndView mv = new ModelAndView("/pc/report/goods");
return mv; return mv;
} }
@RequestMapping("/prize")
public ModelAndView prize() {
ModelAndView mv = new ModelAndView("/pc/report/prize");
return mv;
}
@RequestMapping("/chatrecord") @RequestMapping("/chatrecord")
public ModelAndView chatrecord() { public ModelAndView chatrecord() {
......
...@@ -10,6 +10,6 @@ public class SellerController { ...@@ -10,6 +10,6 @@ public class SellerController {
@RequestMapping("/sellerList") @RequestMapping("/sellerList")
public ModelAndView sellerList() { public ModelAndView sellerList() {
return new ModelAndView(""); return new ModelAndView("/pc/seller/sellerList");
} }
} }
Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
请先完成此消息的编辑!