| | |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | @Controller("mallMemberView") |
| | | @RequestMapping(FebsConstant.VIEW_PREFIX + "modules/mallMember") |
| | |
| | | */ |
| | | @GetMapping("moneyFlowList") |
| | | @RequiresPermissions("moneyFlowList:view") |
| | | public String moneyFlowList() { |
| | | public String moneyFlowList(String refererId, String inviteId, Model model) { |
| | | model.addAttribute("referrerId", refererId); |
| | | model.addAttribute("inviteId", inviteId); |
| | | return FebsUtil.view("modules/mallMember/moneyFlowList"); |
| | | } |
| | | |
| | |
| | | return FebsUtil.view("modules/mallMember/matrixTree"); |
| | | } |
| | | |
| | | @GetMapping("teamList") |
| | | public String teamList() { |
| | | return FebsUtil.view("modules/mallMember/teamList"); |
| | | } |
| | | |
| | | @GetMapping("teamList/{type}/{inviteId}") |
| | | public String teamListByInviteId(@PathVariable(value = "inviteId") String inviteId, @PathVariable("type") Integer type, Model model) { |
| | | model.addAttribute("refererId", inviteId); |
| | | model.addAttribute("type", type); |
| | | return FebsUtil.view("modules/mallMember/teamList"); |
| | | } |
| | | |
| | | |
| | | } |