huanghongfa
2020-12-29 37f55403e7573d8c15b6b0f957b7cb1baf6be4ea
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/RoleApi.java
@@ -83,12 +83,12 @@
    /**
     * 平台菜单列表
     * @param type 1 运营平台 2 社区平台
     * @param communityId 社区id 0 运营平台
     * @return 菜单集合
     */
    @PostMapping("listmenubackstage")
    public R listMenuBackstage(@RequestParam("type")int type){
        return roleService.listMenuBackstage(type);
    public R listMenuBackstage(@RequestParam("communityId")Long communityId){
        return roleService.listMenuBackstage(communityId);
    }
    /**