截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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