update

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