截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

KefuValidate.php 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace app\admin\validate\kefu;
  3. use app\common\basics\Validate;
  4. use app\common\model\kefu\Kefu;
  5. /**
  6. * 客服验证逻辑
  7. * Class KefuValidate
  8. * @package app\admin\validate\content
  9. */
  10. class KefuValidate extends Validate
  11. {
  12. protected $rule = [
  13. 'id' => 'require|number',
  14. 'admin_id' => 'require|number|checkIsKefu',
  15. 'avatar' => 'require',
  16. 'nickname' => 'require',
  17. 'disable' => 'require|in:0,1',
  18. 'sort' => 'gt:0'
  19. ];
  20. protected $message = [
  21. 'id.require' => 'id不可为空',
  22. 'id.number' => 'id必须为数字',
  23. 'admin_id.require' => '请选择管理员',
  24. 'admin_id.number' => '管理员选择异常',
  25. 'avatar.require' => '请选择头像',
  26. 'nickname.require' => '请填写客服昵称',
  27. 'disable.require' => '请选择状态',
  28. 'disable.in' => '状态错误',
  29. 'sort.gt' => '排序需大于0',
  30. ];
  31. public function sceneAdd()
  32. {
  33. $this->remove('id', true);
  34. }
  35. public function sceneEdit()
  36. {
  37. $this->remove('admin_id',true);
  38. }
  39. public function sceneDel()
  40. {
  41. $this->only(['id'])->append('id', 'checkIsDel');
  42. }
  43. /**
  44. * @notes 选中管理员是否已为客服
  45. * @param $value
  46. * @param $rule
  47. * @param array $data
  48. * @return bool|string
  49. * @author 段誉
  50. * @date 2021/11/26 18:56
  51. */
  52. protected function checkIsKefu($value, $rule, $data = [])
  53. {
  54. $check = Kefu::where([
  55. 'admin_id' => $value,
  56. 'shop_id' => 0,
  57. 'del' => 0
  58. ])->findOrEmpty();
  59. if (!$check->isEmpty()) {
  60. return "该管理员已是客服";
  61. }
  62. return true;
  63. }
  64. /**
  65. * @notes 客服是否存在
  66. * @param $value
  67. * @param $rule
  68. * @param array $data
  69. * @return bool|string
  70. * @author 段誉
  71. * @date 2021/11/26 18:57
  72. */
  73. protected function checkIsDel($value, $rule, $data = [])
  74. {
  75. $check = Kefu::where(['id' => $value, 'del' => 0])->findOrEmpty();
  76. if ($check->isEmpty()) {
  77. return "该客服数据错误";
  78. }
  79. return true;
  80. }
  81. }