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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace app\shop\controller\kefu;
  3. use app\common\basics\ShopBase;
  4. use app\common\model\shop\ShopRole;
  5. use app\shop\logic\kefu\KefuLogic;
  6. use app\shop\validate\kefu\KefuValidate;
  7. use app\common\server\JsonServer;
  8. use app\shop\validate\kefu\LoginValidate;
  9. /**
  10. * 客服管理控制器
  11. * Class Kefu
  12. * @package app\admin\controller\kefu
  13. */
  14. class Kefu extends ShopBase
  15. {
  16. /**
  17. * @notes 客服列表
  18. * @return \think\response\Json|\think\response\View
  19. * @author 段誉
  20. * @date 2021/11/26 18:40
  21. */
  22. public function lists()
  23. {
  24. if ($this->request->isAjax()) {
  25. $get = $this->request->get();
  26. $lists = KefuLogic::getLists($get, $this->shop_id);
  27. return JsonServer::success('获取成功', $lists);
  28. }
  29. return view();
  30. }
  31. /**
  32. * @notes 添加客服
  33. * @return \think\response\Json|\think\response\View
  34. * @author 段誉
  35. * @date 2021/11/26 18:04
  36. */
  37. public function add()
  38. {
  39. if ($this->request->isAjax()) {
  40. $post = $this->request->post();
  41. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  42. $post['shop_id'] = $this->shop_id;
  43. (new KefuValidate())->goCheck('add', $post);
  44. $res = KefuLogic::add($post, $this->shop_id);
  45. if (false === $res) {
  46. $error = KefuLogic::getError() ?: '操作失败';
  47. return JsonServer::error($error);
  48. }
  49. return JsonServer::success('操作成功');
  50. }
  51. return view();
  52. }
  53. /**
  54. * @notes 编辑客服
  55. * @return \think\response\Json|\think\response\View
  56. * @author 段誉
  57. * @date 2021/11/27 10:45
  58. */
  59. public function edit()
  60. {
  61. if ($this->request->isAjax()) {
  62. $post = $this->request->post();
  63. $post['disable'] = isset($post['disable']) && $post['disable'] == 'on' ? 0 : 1;
  64. (new KefuValidate())->goCheck('edit', $post);
  65. $res = KefuLogic::edit($post, $this->shop_id);
  66. if (false === $res) {
  67. $error = KefuLogic::getError() ?: '操作失败';
  68. return JsonServer::error($error);
  69. }
  70. return JsonServer::success('操作成功');
  71. }
  72. $id = $this->request->get('id');
  73. return view('', [
  74. 'detail' => KefuLogic::detail($id, $this->shop_id),
  75. ]);
  76. }
  77. /**
  78. * @notes 删除客服
  79. * @return \think\response\Json|void
  80. * @author 段誉
  81. * @date 2021/11/26 18:53
  82. */
  83. public function del()
  84. {
  85. if ($this->request->isAjax()) {
  86. $post = $this->request->post();
  87. (new KefuValidate())->goCheck('del');
  88. KefuLogic::del($post, $this->shop_id);
  89. return JsonServer::success('操作成功');
  90. }
  91. }
  92. /**
  93. * @notes 管理员列表
  94. * @return \think\response\Json|\think\response\View
  95. * @throws \think\db\exception\DataNotFoundException
  96. * @throws \think\db\exception\DbException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. * @author 段誉
  99. * @date 2021/11/26 18:01
  100. */
  101. public function adminLists()
  102. {
  103. if ($this->request->isAjax()) {
  104. $get = $this->request->get();
  105. return JsonServer::success('', KefuLogic::getAdminLists($get, $this->shop_id));
  106. }
  107. return view('', ['role_lists' => (new ShopRole())->getRoleLists(['shop_id' => $this->shop_id])]);
  108. }
  109. /**
  110. * @notes 设置状态
  111. * @return \think\response\Json|void
  112. * @author 段誉
  113. * @date 2021/11/26 18:40
  114. */
  115. public function status()
  116. {
  117. if ($this->request->isAjax()) {
  118. $post = $this->request->post();
  119. KefuLogic::setStatus($post, $this->shop_id);
  120. return JsonServer::success('操作成功');
  121. }
  122. }
  123. /**
  124. * @notes 登录工作台
  125. * @return \think\response\Json|void
  126. * @author 段誉
  127. * @date 2021/12/20 10:46
  128. */
  129. public function login()
  130. {
  131. if ($this->request->isAjax()) {
  132. $id = $this->request->post('id/d');
  133. (new LoginValidate())->goCheck('', ['shop_id' =>$this->shop_id]);
  134. $res = KefuLogic::login($id, $this->shop_id);
  135. if (false === $res) {
  136. return JsonServer::error(KefuLogic::getError() ?: '系统错误');
  137. }
  138. return JsonServer::success('', ['url' => $res]);
  139. }
  140. }
  141. }