截流自动化的商城平台
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.

Auth.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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\shop;
  20. use app\admin\validate\ShopAuthValidate;
  21. use app\admin\logic\shop\AuthLogic;
  22. use app\common\basics\AdminBase;
  23. use app\common\server\JsonServer;
  24. /**
  25. * 商家菜单
  26. * Class Auth
  27. * @package app\admin\controller\shop
  28. */
  29. class Auth extends AdminBase
  30. {
  31. /**
  32. * Notes: 列表
  33. * @author 段誉(2021/4/10 16:44)
  34. * @return string|\think\response\Json
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. */
  39. public function lists()
  40. {
  41. if($this->request->isAjax()) {
  42. $data = AuthLogic::lists();
  43. return json(['code' => 0, 'msg' => '列表', 'data' => json_encode($data)]);
  44. }
  45. return view();
  46. }
  47. /**
  48. * Notes: 添加
  49. * @author 段誉(2021/4/12 16:43)
  50. * @return string|\think\response\Json
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\DbException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. */
  55. public function add()
  56. {
  57. if ($this->request->isAjax()) {
  58. $post = $this->request->post();
  59. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  60. (new ShopAuthValidate())->goCheck();
  61. $result = AuthLogic::addMenu($post);
  62. if (false === $result) {
  63. return JsonServer::error(AuthLogic::getError() ?: '操作失败');
  64. }
  65. return JsonServer::success('操作成功');
  66. }
  67. return view('', ['menu_lists' => AuthLogic::chooseMenu()]);
  68. }
  69. /**
  70. * Notes: 编辑
  71. * @author 段誉(2021/4/12 16:43)
  72. * @return string|\think\response\Json
  73. * @throws \think\db\exception\DataNotFoundException
  74. * @throws \think\db\exception\DbException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. */
  77. public function edit()
  78. {
  79. $id = $this->request->get('id');
  80. if ($this->request->isAjax()) {
  81. $post = $this->request->post();
  82. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  83. (new ShopAuthValidate())->goCheck();
  84. if (false === AuthLogic::editMenu($post)) {
  85. return JsonServer::error(AuthLogic::getError() ?: '操作失败');
  86. }
  87. return JsonServer::success('操作成功');
  88. }
  89. return view('', [
  90. 'detail' => AuthLogic::detail($id),
  91. 'menu_lists' => AuthLogic::chooseMenu()
  92. ]);
  93. }
  94. /**
  95. * Notes: 删除
  96. * @author 段誉(2021/4/12 16:43)
  97. * @return \think\response\Json
  98. * @throws \think\db\exception\DataNotFoundException
  99. * @throws \think\db\exception\DbException
  100. * @throws \think\db\exception\ModelNotFoundException
  101. */
  102. public function del()
  103. {
  104. if ($this->request->isAjax()) {
  105. $post = $this->request->post();
  106. if (empty($post['ids'])) {
  107. return JsonServer::error(AuthLogic::getError() ?: '操作失败');
  108. }
  109. AuthLogic::delMenu($post['ids']);
  110. return JsonServer::success('操作成功');
  111. }
  112. }
  113. /**
  114. * Notes: 设置
  115. * @author 段誉(2021/4/12 16:43)
  116. */
  117. public function status()
  118. {
  119. if ($this->request->isAjax()) {
  120. $post = $this->request->post();
  121. AuthLogic::setStatus($post);
  122. return JsonServer::success('操作成功');
  123. }
  124. }
  125. }