func (this *RoleController) AccessToNode() { roleid, _ := this.GetInt64("Id") if this.IsAjax() { groupid, _ := this.GetInt64("group_id") nodes, count := m.GetNodelistByGroupid(groupid) list, _ := m.GetNodelistByRoleId(roleid) for i := 0; i < len(nodes); i++ { if nodes[i]["Pid"] != 0 { nodes[i]["_parentId"] = nodes[i]["Pid"] } else { nodes[i]["state"] = "closed" } for x := 0; x < len(list); x++ { if nodes[i]["Id"] == list[x]["Id"] { nodes[i]["checked"] = 1 } } } if len(nodes) < 1 { nodes = []orm.Params{} } this.Data["json"] = &map[string]interface{}{"total": count, "rows": &nodes} this.ServeJSON() return } else { grouplist := m.GroupList() b, _ := json.Marshal(grouplist) this.Data["grouplist"] = string(b) this.Data["roleid"] = roleid this.TplName = this.GetTemplatetype() + "/rbac/accesstonode.tpl" } }
func (this *NodeController) Index() { if this.IsAjax() { page, _ := this.GetInt64("page") page_size, _ := this.GetInt64("rows") sort := this.GetString("sort") order := this.GetString("order") if len(order) > 0 { if order == "desc" { sort = "-" + sort } } else { sort = "Id" } nodes, count := m.GetNodelist(page, page_size, sort) for i := 0; i < len(nodes); i++ { if nodes[i]["Pid"] != 0 { nodes[i]["_parentId"] = nodes[i]["Pid"] } else { nodes[i]["state"] = "closed" } } if len(nodes) < 1 { nodes = []orm.Params{} } this.Data["json"] = &map[string]interface{}{"total": count, "rows": &nodes} this.ServeJson() return } else { grouplist := m.GroupList() b, _ := json.Marshal(grouplist) this.Data["grouplist"] = string(b) this.TplNames = this.GetTemplatetype() + "/rbac/node.tpl" } }
//首页 func (this *MainController) Index() { userinfo := this.GetSession("userinfo") if userinfo == nil { this.Ctx.Redirect(302, beego.AppConfig.String("rbac_auth_gateway")) } if this.IsAjax() { nodes, _ := m.GetNodeTree(0, 1) tree := make([]Tree, len(nodes)) for k, v := range nodes { tree[k].Id = v["Id"].(int64) tree[k].Text = v["Title"].(string) children, _ := m.GetNodeTree(v["Id"].(int64), 2) tree[k].Children = make([]Tree, len(children)) for k1, v1 := range children { tree[k].Children[k1].Id = v1["Id"].(int64) tree[k].Children[k1].Text = v1["Title"].(string) tree[k].Children[k1].Attributes.Url = "/" + v["Name"].(string) + "/" + v1["Name"].(string) } } this.Data["json"] = &tree this.ServeJson() return } else { groups := m.GroupList() this.Data["userinfo"] = userinfo this.Data["groups"] = groups if this.GetTemplatetype() != "easyui" { this.Layout = this.GetTemplatetype() + "/public/layout.tpl" } this.TplNames = this.GetTemplatetype() + "/public/index.tpl" } }
//首页 func (this *MainController) Index() { userinfo := this.GetSession("userinfo") if userinfo == nil { this.Ctx.Redirect(302, beego.AppConfig.String("rbac_auth_gateway")) } tree := this.GetTree() if this.IsAjax() { this.Data["json"] = &tree this.ServeJson() return } else { groups := m.GroupList() this.Data["userinfo"] = userinfo this.Data["groups"] = groups this.Data["tree"] = &tree if this.GetTemplatetype() != "easyui" { this.Layout = this.GetTemplatetype() + "/public/layout.tpl" } this.TplNames = this.GetTemplatetype() + "/public/index.tpl" } }