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

ActivityArea.php 984B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. namespace app\common\model\activity_area;
  3. use app\common\basics\Models;
  4. use app\common\enum\ActivityAreaEnum;
  5. /**
  6. * Class ActivityArea
  7. * @package app\common\model\activity_area
  8. */
  9. class ActivityArea extends Models
  10. {
  11. /**
  12. * @notes 支付方式
  13. * @param bool $status
  14. * @return string|string[]
  15. * @author suny
  16. * @date 2021/7/13 6:37 下午
  17. */
  18. public static function getStatus($status = true)
  19. {
  20. $desc = [
  21. ActivityAreaEnum::STATUS_OPEN => '开启',
  22. ActivityAreaEnum::STATUS_CLOSE => '隐藏',
  23. ];
  24. if ($status === true) {
  25. return $desc;
  26. }
  27. return $desc[$status] ?? '未知';
  28. }
  29. /**
  30. * @notes 支付状态
  31. * @param $value
  32. * @param $data
  33. * @return string|string[]
  34. * @author suny
  35. * @date 2021/7/13 6:37 下午
  36. */
  37. public function getStatusAttr($value, $data)
  38. {
  39. return self::getStatus($data['status']);
  40. }
  41. }