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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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\shop\controller\kefu;
  20. use app\shop\logic\kefu\KefuLangLogic;
  21. use app\shop\validate\kefu\KefuLangValidate;
  22. use app\common\basics\ShopBase;
  23. use app\common\server\JsonServer;
  24. /**
  25. * 客服术语
  26. * Class KefuLang
  27. * @package app\admin\controller\kefu
  28. */
  29. class KefuLang extends ShopBase
  30. {
  31. /**
  32. * @notes 列表
  33. * @return \think\response\Json|\think\response\View
  34. * @throws \think\db\exception\DbException
  35. * @author cjhao
  36. * @date 2021/11/29 15:20
  37. */
  38. public function lists()
  39. {
  40. if($this->request->isAjax()){
  41. $page = $this->request->get('page', 1);
  42. $limit = $this->request->get('limit', 10);
  43. $lists = KefuLangLogic::lists($this->shop_id,$limit,$page);
  44. return JsonServer::success('获取成功', $lists);
  45. }
  46. return view();
  47. }
  48. /**
  49. * @notes 添加话术
  50. * @return \think\response\Json|\think\response\View
  51. * @author cjhao
  52. * @date 2021/11/29 15:59
  53. */
  54. public function add()
  55. {
  56. if($this->request->isAjax()){
  57. $post= (new KefuLangValidate())->goCheck('add',['shop_id'=>$this->shop_id]);
  58. $result = KefuLangLogic::add($this->shop_id,$post);
  59. if($result){
  60. return JsonServer::success('新增成功', []);
  61. }
  62. return JsonServer::error('新增失败');
  63. }
  64. return view();
  65. }
  66. /**
  67. * @notes 编辑话术
  68. * @return \think\response\Json|\think\response\View
  69. * @author cjhao
  70. * @date 2021/11/29 15:59
  71. */
  72. public function edit()
  73. {
  74. if($this->request->isAjax()){
  75. $post= (new KefuLangValidate())->goCheck(null,['shop_id'=>$this->shop_id]);
  76. $result = KefuLangLogic::edit($post);
  77. if($result){
  78. return JsonServer::success('修改成功', []);
  79. }
  80. return JsonServer::error('修改失败');
  81. }
  82. $id = $this->request->get('id');
  83. return view('', [
  84. 'detail' => KefuLangLogic::detail($this->shop_id,$id),
  85. ]);
  86. }
  87. /**
  88. * @notes 删除话术
  89. * @return \think\response\Json
  90. * @author cjhao
  91. * @date 2021/11/29 16:46
  92. */
  93. public function del()
  94. {
  95. $post= (new KefuLangValidate())->goCheck('del',['shop_id'=>$this->shop_id]);
  96. $result = KefuLangLogic::del($this->shop_id,$post['id']);
  97. if($result){
  98. return JsonServer::success('删除成功', []);
  99. }
  100. return JsonServer::error('删除失败');
  101. }
  102. }