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

Admin.php 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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\AdminLogic;
  21. use app\admin\logic\LoginLogic;
  22. use app\admin\validate\AdminPasswordValidate;
  23. use app\admin\validate\AdminValidate;
  24. use app\common\basics\AdminBase;
  25. use app\common\model\Role;
  26. use app\common\model\Admin as AdminModel;
  27. use app\common\server\JsonServer;
  28. class Admin extends AdminBase
  29. {
  30. /**
  31. * Notes: 列表
  32. * @author 段誉(2021/4/10 16:44)
  33. * @return string|\think\response\Json
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function lists()
  39. {
  40. if ($this->request->isAjax()) {
  41. $get = $this->request->get();
  42. return JsonServer::success('获取成功', AdminLogic::lists($get));
  43. }
  44. return view('', ['role_lists' => (new Role())->getRoleLists()]);
  45. }
  46. /**
  47. * Notes: 添加
  48. * @author 段誉(2021/4/10 16:44)
  49. * @return string|\think\response\Json
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\DbException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. */
  54. public function add()
  55. {
  56. if ($this->request->isAjax()) {
  57. $post = $this->request->post();
  58. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  59. (new AdminValidate())->goCheck('add');
  60. if (AdminLogic::addAdmin($post)) {
  61. return JsonServer::success('操作成功');
  62. }
  63. return JsonServer::error(AdminLogic::getError() ?: '操作失败');
  64. }
  65. return view('', ['role_lists' => (new Role())->getRoleLists()]);
  66. }
  67. /**
  68. * Notes: 编辑
  69. * @author 段誉(2021/4/10 16:45)
  70. * @return string
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\DbException
  73. * @throws \think\db\exception\ModelNotFoundException
  74. */
  75. public function edit()
  76. {
  77. $id = $this->request->get('admin_id');
  78. if ($this->request->isAjax()) {
  79. $post = $this->request->post();
  80. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  81. (new AdminValidate())->goCheck('edit');
  82. if (AdminLogic::editAdmin($post)) {
  83. return JsonServer::success('操作成功');
  84. }
  85. return JsonServer::error(AdminLogic::getError() ?: '操作失败');
  86. }
  87. return view('',[
  88. 'detail' => AdminModel::find($id),
  89. 'role_lists' => (new Role())->getRoleLists()
  90. ]);
  91. }
  92. /**
  93. * Notes: 删除
  94. * @author 段誉(2021/4/30 11:31)
  95. * @return \think\response\Json
  96. */
  97. public function del()
  98. {
  99. if ($this->request->isAjax()) {
  100. $id = $this->request->post('admin_id');
  101. if (AdminLogic::delAdmin($id)) {
  102. return JsonServer::success('操作成功');
  103. }
  104. }
  105. return JsonServer::error('操作失败');
  106. }
  107. /**
  108. * Notes: 修改密码
  109. * @author 段誉(2021/4/30 12:03)
  110. * @return \think\response\Json|\think\response\View
  111. */
  112. public function password()
  113. {
  114. if ($this->request->isAjax()) {
  115. $post = $this->request->post();
  116. $post['admin_id'] = $this->adminId;
  117. (new AdminPasswordValidate())->goCheck('', $post);
  118. $res = AdminLogic::updatePassword($post['password'], $this->adminId);
  119. if ($res) {
  120. return JsonServer::success('操作成功');
  121. }
  122. return JsonServer::error(AdminLogic::getError() ?: '操作失败');
  123. }
  124. return view('', [
  125. 'account' => $this->adminUser['account']
  126. ]);
  127. }
  128. }