hxz hace 2 años
padre
commit
5907331c1c
Se han modificado 3 ficheros con 32 adiciones y 4 borrados
  1. 7 2
      app/system/controller/role.go
  2. 9 0
      app/system/model/role.go
  3. 16 2
      app/system/service/roleService.go

+ 7 - 2
app/system/controller/role.go

@@ -60,8 +60,13 @@ func (c *role) List(ctx *gin.Context) {
 }
 
 func (c *role) Tree(ctx *gin.Context) {
-	err := service.RoleService.Tree()
-	ctx.JSON(http.StatusOK, err)
+	role, err := service.RoleService.Tree()
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+
+	ctx.JSON(http.StatusOK, role)
 }
 
 func (c *role) Submit(ctx *gin.Context) {

+ 9 - 0
app/system/model/role.go

@@ -21,5 +21,14 @@ type ReqRoleGrant struct {
 	DataScopeIds string `json:"dataScopeIds"` //数据权限ID
 	ApiScopeIds  string `json:"apiScopeIds"`  //接口权限ID
 }
+type RspRoleTree struct {
+	HasChildren bool          `json:"hasChildren"`
+	ID          string        `json:"id"`
+	ParentId    string        `json:"parentId"`
+	Title       string        `json:"title"`
+	Key         string        `json:"key"`
+	Value       string        `json:"value"`
+	Children    []RspRoleTree `json:"children"`
+}
 
 const ExistChild = "需要删除的记录中存在子角色,请先删除子角色!"

+ 16 - 2
app/system/service/roleService.go

@@ -43,8 +43,22 @@ func (s *roleService) List(roleName, tenantId, roleAlias string, current, size i
 	return roles, nil
 }
 
-func (s *roleService) Tree() error {
-	return nil
+func (s *roleService) Tree() ([]dao.Role, error) {
+	role := &dao.Role{}
+	roles, err := role.GetAll()
+	if err != nil {
+		return nil, err
+	}
+	rsp := model.RspRoleTree{
+		HasChildren: false,
+		ID:          ,
+		ParentId:    "",
+		Title:       "",
+		Key:         "",
+		Value:       "",
+		Children:    nil,
+	}
+	return rsp, nil
 }
 
 func (s *roleService) Submit(req dao.Role) *util.Errors {