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

KefuLangLogic.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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\logic\kefu;
  20. use app\common\model\kefu\KefuLang;
  21. /**
  22. * 客服术语逻辑层
  23. * Class KefuLangLogic
  24. * @package app\admin\logic\kefu
  25. */
  26. class KefuLangLogic
  27. {
  28. /**
  29. * @notes 获取列表
  30. * @param $limit
  31. * @param $page
  32. * @return array
  33. * @throws \think\db\exception\DbException
  34. * @author cjhao
  35. * @date 2021/11/29 15:11
  36. */
  37. public static function lists(int $limit,int $page)
  38. {
  39. $list = KefuLang::where(['shop_id' => 0])->order('sort asc')->paginate([
  40. 'list_rows' => $limit,
  41. 'page' => $page,
  42. ]);
  43. return ['count' => $list->total(), 'lists' => $list->getCollection()];
  44. }
  45. /**
  46. * @notes 新增话术
  47. * @param $post
  48. * @return bool
  49. * @author cjhao
  50. * @date 2021/11/29 15:54
  51. */
  52. public static function add(array $post)
  53. {
  54. $kefu_lang = new KefuLang();
  55. $kefu_lang->title = $post['title'];
  56. $kefu_lang->content = $post['content'];
  57. $kefu_lang->sort = $post['sort'];
  58. return $kefu_lang->save();
  59. }
  60. /**
  61. * @notes 编辑话术
  62. * @param $post
  63. * @return bool
  64. * @author cjhao
  65. * @date 2021/11/29 15:59
  66. */
  67. public static function edit(array $post){
  68. return KefuLang::update($post);
  69. }
  70. /**
  71. * @notes 获取话术
  72. * @param $id
  73. * @return array|\think\Model|null
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\DbException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @author cjhao
  78. * @date 2021/11/29 16:02
  79. */
  80. public static function detail(int $id){
  81. return KefuLang::where(['id'=>$id])->find();
  82. }
  83. /**
  84. * @notes 删除话术
  85. * @param int $id
  86. * @return bool
  87. * @author cjhao
  88. * @date 2021/11/29 16:11
  89. */
  90. public static function del(int $id){
  91. return KefuLang::destroy($id);
  92. }
  93. }