PointRule.php 939 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\pointcash\event;
  11. use addon\pointcash\model\Config;
  12. /**
  13. * 积分规则
  14. */
  15. class PointRule
  16. {
  17. public function handle($data)
  18. {
  19. $info = (new Config())->getPointCashConfig($data['site_id'])['data'];
  20. $data = [
  21. 'title' => '积分抵现',
  22. 'content' => !$info['is_use'] || !$info['value']['cash_rate'] ? '-' : $info['value']['cash_rate'] . "积分可抵1元",
  23. 'url' => 'pointcash://shop/config/index',
  24. 'update_time' => $info['modify_time']
  25. ];
  26. return $data;
  27. }
  28. }