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

Team.php 608B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\common\model\team;
  3. use think\Model;
  4. /**
  5. * 拼团
  6. * Class Team
  7. * @package app\common\model
  8. */
  9. class Team extends Model
  10. {
  11. const STATUS_WAIT_SUCCESS = 0;
  12. const STATUS_SUCCESS = 1;
  13. const STATUS_ERROR = 2;
  14. //拼团状态
  15. public static function getStatusDesc($type)
  16. {
  17. $desc = [
  18. self::STATUS_WAIT_SUCCESS => '拼团中',
  19. self::STATUS_SUCCESS => '拼团成功',
  20. self::STATUS_ERROR => '拼团失败',
  21. ];
  22. if ($type === true){
  23. return $desc;
  24. }
  25. return $desc[$type] ?? '';
  26. }
  27. }