xiaoyong931011
2022-11-21 5d1fc41db9c48ca7e4beffdfeb789fd6f69f4d2f
src/main/java/cc/mrbird/febs/dapp/controller/ViewController.java
@@ -265,4 +265,20 @@
        return FebsUtil.view("dapp/money-total-flow-out");
    }
    public static long idMemberTeamInfo;
    /**
     * 用户列表-团队详情
     * @param id
     * @param model
     * @return
     */
    @GetMapping("/teamInfo/{id}")
    @RequiresPermissions("teamInfo:update")
    public String teamInfo(@PathVariable long id, Model model) {
        idMemberTeamInfo = id;
        DappMemberEntity data = dappMemberDao.selectById(id);
        model.addAttribute("teamInfo", data);
        return FebsUtil.view("dapp/teamInfo");
    }
}