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

Kefu.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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\common\model\kefu;
  20. use app\common\basics\Models;
  21. use app\common\server\UrlServer;
  22. /**
  23. * 客服模型
  24. * Class kefu
  25. * @package app\common\model
  26. */
  27. class Kefu extends Models
  28. {
  29. protected $name = 'kefu';
  30. public function getAvatarAttr($value)
  31. {
  32. if (empty($value)) {
  33. return config('default.kefu_avatar');
  34. }
  35. return $value;
  36. }
  37. /**
  38. * @notes 添加客服
  39. * @param array $data
  40. * @param int $shop_id
  41. * @return Kefu|\think\Model
  42. * @author 段誉
  43. * @date 2021/11/26 17:41
  44. */
  45. public function insertKefu(array $data = [], int $shop_id = 0)
  46. {
  47. return self::create([
  48. 'shop_id' => $shop_id,
  49. 'admin_id' => $data['admin_id'],
  50. 'nickname' => $data['nickname'],
  51. 'avatar' => UrlServer::setFileUrl($data['avatar']),
  52. 'disable' => $data['disable'],
  53. 'sort' => $data['sort'] ?? 1,
  54. 'create_time' => time(),
  55. ]);
  56. }
  57. /**
  58. * @notes 更新客服信息
  59. * @param array $data
  60. * @param int $shop_id
  61. * @return Kefu
  62. * @author 段誉
  63. * @date 2021/11/27 10:59
  64. */
  65. public function updateKefuData(int $id = 0, int $shop_id = 0, array $data = [])
  66. {
  67. return self::update($data, ['id' => $id, 'shop_id' => $shop_id, 'del' => 0]);
  68. }
  69. /**
  70. * @notes 编辑客服
  71. * @param int $id
  72. * @param array $params
  73. * @param int $shop_id
  74. * @return Kefu
  75. * @author 段誉
  76. * @date 2021/11/27 11:08
  77. */
  78. public function updateKefu(int $id, array $params = [], int $shop_id = 0)
  79. {
  80. $data = [
  81. 'avatar' => UrlServer::setFileUrl($params['avatar']),
  82. 'nickname' => $params['nickname'],
  83. 'sort' => $params['sort'] ?? 1,
  84. 'disable' => $params['disable'],
  85. 'update_time' => time(),
  86. ];
  87. return $this->updateKefuData($id, $shop_id, $data);
  88. }
  89. /**
  90. * @notes 删除客服
  91. * @param int $id
  92. * @param int $shop_id
  93. * @return Kefu
  94. * @author 段誉
  95. * @date 2021/11/27 10:47
  96. */
  97. public function delKefu(int $id = 0, int $shop_id = 0)
  98. {
  99. $data = [
  100. 'del' => 1,
  101. 'update_time' => time()
  102. ];
  103. return $this->updateKefuData($id, $shop_id, $data);
  104. }
  105. /**
  106. * @notes 更新状态
  107. * @param int $id
  108. * @param int $status
  109. * @param int $shop_id
  110. * @return Kefu
  111. * @author 段誉
  112. * @date 2021/11/27 11:09
  113. */
  114. public function updateStatus(int $id = 0, int $status = 0, int $shop_id = 0)
  115. {
  116. $data = [
  117. 'disable' => $status,
  118. 'update_time' => time(),
  119. ];
  120. return $this->updateKefuData($id, $shop_id, $data);
  121. }
  122. }