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

KefuLang.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\kefu;
  20. use app\admin\logic\kefu\KefuLangLogic;
  21. use app\admin\logic\kefu\KefuLogic;
  22. use app\admin\validate\kefu\KefuLangValidate;
  23. use app\common\basics\AdminBase;
  24. use app\common\server\JsonServer;
  25. /**
  26. * 客服术语
  27. * Class KefuLang
  28. * @package app\admin\controller\kefu
  29. */
  30. class KefuLang extends AdminBase
  31. {
  32. /**
  33. * @notes 列表
  34. * @return \think\response\Json|\think\response\View
  35. * @throws \think\db\exception\DbException
  36. * @author cjhao
  37. * @date 2021/11/29 15:20
  38. */
  39. public function lists()
  40. {
  41. if($this->request->isAjax()){
  42. $page = $this->request->get('page', 1);
  43. $limit = $this->request->get('limit', 10);
  44. $lists = KefuLangLogic::lists($limit,$page);
  45. return JsonServer::success('获取成功', $lists);
  46. }
  47. return view();
  48. }
  49. /**
  50. * @notes 添加话术
  51. * @return \think\response\Json|\think\response\View
  52. * @author cjhao
  53. * @date 2021/11/29 15:59
  54. */
  55. public function add()
  56. {
  57. if($this->request->isAjax()){
  58. $post= (new KefuLangValidate())->goCheck('add');
  59. $result = KefuLangLogic::add($post);
  60. if($result){
  61. return JsonServer::success('新增成功', []);
  62. }
  63. return JsonServer::error('新增失败');
  64. }
  65. return view();
  66. }
  67. /**
  68. * @notes 编辑话术
  69. * @return \think\response\Json|\think\response\View
  70. * @author cjhao
  71. * @date 2021/11/29 15:59
  72. */
  73. public function edit()
  74. {
  75. if($this->request->isAjax()){
  76. $post= (new KefuLangValidate())->goCheck();
  77. $result = KefuLangLogic::edit($post);
  78. if($result){
  79. return JsonServer::success('修改成功', []);
  80. }
  81. return JsonServer::error('修改失败');
  82. }
  83. $id = $this->request->get('id');
  84. return view('', [
  85. 'detail' => KefuLangLogic::detail($id),
  86. ]);
  87. }
  88. /**
  89. * @notes 删除话术
  90. * @return \think\response\Json
  91. * @author cjhao
  92. * @date 2021/11/29 16:35
  93. */
  94. public function del()
  95. {
  96. $post= (new KefuLangValidate())->goCheck('del');
  97. $result = KefuLangLogic::del($post['id']);
  98. if($result){
  99. return JsonServer::success('删除成功', []);
  100. }
  101. return JsonServer::error('删除失败');
  102. }
  103. }