截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Role.php 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller;
  20. use app\admin\logic\RoleLogic;
  21. use app\admin\validate\RoleValidate;
  22. use app\common\basics\AdminBase;
  23. use app\common\server\JsonServer;
  24. class Role extends AdminBase
  25. {
  26. /**
  27. * Notes: 列表
  28. * @author 段誉(2021/4/13 10:34)
  29. * @return string|\think\response\Json
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public function lists()
  34. {
  35. if ($this->request->isAjax()) {
  36. $get = $this->request->get();
  37. return JsonServer::success('', RoleLogic::lists($get));
  38. }
  39. return view();
  40. }
  41. /**
  42. * Notes: 添加
  43. * @author 段誉(2021/4/13 10:34)
  44. * @return string|\think\response\Json
  45. * @throws \think\db\exception\DataNotFoundException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. */
  48. public function add()
  49. {
  50. if ($this->request->isAjax()) {
  51. $post = $this->request->post();
  52. (new RoleValidate())->goCheck('add');
  53. $result = RoleLogic::addRole($post);
  54. if ($result !== true) {
  55. return JsonServer::error(RoleLogic::getError() ?: '操作失败');
  56. }
  57. return JsonServer::success('操作成功');
  58. }
  59. return view('',[
  60. 'auth_tree' => json_encode(RoleLogic::authTree(), true)
  61. ]);
  62. }
  63. /**
  64. * Notes: 编辑
  65. * @param string $role_id
  66. * @author 段誉(2021/4/13 10:34)
  67. * @return string|\think\response\Json
  68. * @throws \think\Exception
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. */
  72. public function edit($role_id = '')
  73. {
  74. if ($this->request->isAjax()) {
  75. $post = $this->request->post();
  76. (new RoleValidate())->goCheck('edit');
  77. $result = RoleLogic::editRole($post);
  78. if ($result !== true) {
  79. return JsonServer::error(RoleLogic::getError() ?: '操作失败');
  80. }
  81. return JsonServer::success('操作成功');
  82. }
  83. $auth_tree = RoleLogic::authTree($role_id);
  84. return view('', [
  85. 'info' => RoleLogic::roleInfo($role_id),
  86. 'auth_tree' => json_encode($auth_tree),
  87. ]);
  88. }
  89. /**
  90. * Notes: 删除
  91. * @param $role_id
  92. * @author 段誉(2021/4/13 10:35)
  93. * @return \think\response\Json
  94. * @throws \think\Exception
  95. */
  96. public function del($id)
  97. {
  98. if ($this->request->isAjax()) {
  99. (new RoleValidate())->goCheck('del');
  100. RoleLogic::delRole($id);
  101. return JsonServer::success('删除成功');
  102. }
  103. }
  104. }