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

TeamEnum.php 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. namespace app\common\enum;
  3. class TeamEnum
  4. {
  5. /**
  6. * 团的状态
  7. */
  8. const TEAM_STATUS_START = 1; //进行中
  9. const TEAM_STATUS_STOP = 0; //已停止
  10. /**
  11. * 审核状态
  12. */
  13. const TEAM_AUDIT_WAIT = 0; //等待审核
  14. const TEAM_AUDIT_SUCCESS = 1; //审核通过
  15. const TEAM_AUDIT_REFUSE = 2; //审核拒绝
  16. /**
  17. * 拼团状态
  18. */
  19. const TEAM_STATUS_CONDUCT = 0; //进行中
  20. const TEAM_STATUS_SUCCESS = 1; //拼团成功
  21. const TEAM_STATUS_FAIL = 2; //拼团失败
  22. /**
  23. * @Notes: 获取团活动状态
  24. * @Author: 张无忌
  25. * @param $type
  26. * @return array|mixed|string
  27. */
  28. public static function getTeamStatusDesc($type)
  29. {
  30. $desc = [
  31. self::TEAM_STATUS_START => '进行中',
  32. self::TEAM_STATUS_STOP => '已停止',
  33. ];
  34. if ($type === true){
  35. return $desc;
  36. }
  37. return $desc[$type] ?? '';
  38. }
  39. /**
  40. * @Notes: 审核状态
  41. * @Author: 张无忌
  42. * @param $type
  43. * @return array|mixed|string
  44. */
  45. public static function getTeamAuditDesc($type)
  46. {
  47. $desc = [
  48. self::TEAM_AUDIT_WAIT => '待审核',
  49. self::TEAM_AUDIT_SUCCESS => '审核通过',
  50. self::TEAM_AUDIT_REFUSE => '审核拒绝',
  51. ];
  52. if ($type === true){
  53. return $desc;
  54. }
  55. return $desc[$type] ?? '';
  56. }
  57. /**
  58. * @Notes: 拼团状态
  59. * @Author: 张无忌
  60. * @param $type
  61. * @return array|mixed|string
  62. */
  63. public static function getStatusDesc($type)
  64. {
  65. $desc = [
  66. self::TEAM_STATUS_CONDUCT => '拼购中',
  67. self::TEAM_STATUS_SUCCESS => '拼团成功',
  68. self::TEAM_STATUS_FAIL => '拼团失败',
  69. ];
  70. if ($type === true){
  71. return $desc;
  72. }
  73. return $desc[$type] ?? '';
  74. }
  75. }