ApplyVerify.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\listener\supplier;
  12. use crmeb\interfaces\ListenerInterface;
  13. /**
  14. * 供应商入驻审核事件
  15. * Class ApplyVerify
  16. * @package app\listener\supplier
  17. */
  18. class ApplyVerify implements ListenerInterface
  19. {
  20. public function handle($event): void
  21. {
  22. [$supplierInfo, $verifyStatus] = $event;
  23. if ($verifyStatus == 1) {//通过
  24. $mark = 'supplier_verify_success';
  25. } else {//未通过
  26. $mark = 'supplier_verify_fail';
  27. }
  28. //发送消息
  29. event('notice.notice', [$supplierInfo, $mark]);
  30. }
  31. }