chart_permission.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package controllers
  2. import (
  3. "eta/eta_mini_crm/models"
  4. "eta/eta_mini_crm/models/response"
  5. "eta/eta_mini_crm/services"
  6. )
  7. type ChartPermissionController struct {
  8. BaseAuthController
  9. }
  10. // List
  11. // @Title 系统品种列表
  12. // @Description 系统品种列表
  13. // @Param UserId query int true "角色ID"
  14. // @Success 200 {object} models.LoginResp
  15. // @router /list [get]
  16. func (this *ChartPermissionController) List() {
  17. br := new(models.BaseResponse).Init()
  18. defer func() {
  19. this.Data["json"] = br
  20. this.ServeJSON()
  21. }()
  22. userId, _ := this.GetInt("UserId")
  23. items, err := models.GetChartPermissionList()
  24. if err != nil {
  25. br.Msg = "权限列表获取失败"
  26. br.ErrMsg = "权限列表获取失败,系统错误,Err:" + err.Error()
  27. return
  28. }
  29. treeList := services.GetChartPermissionListTree(items, 0)
  30. // publicMap, privateMap, err := services.GetChartPermissionList()
  31. resp := new(response.ChartPermissionListresp)
  32. if userId > 0 {
  33. ids, err := models.GetChartPermissionIdByUserId(userId)
  34. if err != nil {
  35. br.Msg = "权限列表获取失败"
  36. br.ErrMsg = "权限列表获取失败,系统错误,Err:" + err.Error()
  37. }
  38. resp.SelectedList = ids
  39. }
  40. resp.List = treeList
  41. br.Ret = 200
  42. br.Data = resp
  43. br.Msg = "列表获取成功"
  44. br.Success = true
  45. }