链街Dcat后台
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.

55 lines
1.1 KiB

  1. <?php
  2. return [
  3. //优惠卷(用户)状态
  4. 'status'=>[
  5. -1=> '已删除',
  6. 0=>'草稿',
  7. 1=>'正常',
  8. 2=>'已领完',
  9. 3=>'禁用',
  10. ],
  11. 'status_label'=>[
  12. 'default' => 'primary',
  13. 0 => 'info',
  14. 1 => 'success',
  15. 2 => 'warning',
  16. 3 => 'danger',
  17. -1=> 'danger'
  18. ],
  19. //优惠卷 - 类型 type
  20. 'type'=>[
  21. 1=>'全平台',
  22. 2=>'线上',
  23. 3=>'线下',
  24. ],
  25. //优惠卷 - 分类 category
  26. 'category'=>[
  27. 1=>'订单'
  28. ],
  29. //优惠卷 - 是否新用户
  30. 'is_new_user'=>[
  31. 1=>'是',
  32. 2=>'否',
  33. ],
  34. //优惠卷 - 发布优惠卷时,间隔最少时间
  35. 'interval_time_min'=>3600,
  36. //优惠卷 - 设置
  37. 'setting_category'=>[
  38. 1=>[
  39. 'name' => '领取类型',
  40. 'active' => true
  41. ],
  42. ],
  43. //优惠卷 - 折扣类型
  44. 'discount_type'=>[
  45. 1=>'金额',
  46. 2=>'打折(%)',
  47. ],
  48. //优惠卷 - 活动类型 active_type
  49. 'active_type'=>[
  50. 1=>'领取活动',
  51. 2=>'转发活动',
  52. 3=>'返券专用'
  53. ]
  54. ];