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
55 lines
1.1 KiB
<?php
|
|
|
|
return [
|
|
//优惠卷(用户)状态
|
|
'status'=>[
|
|
-1=> '已删除',
|
|
0=>'草稿',
|
|
1=>'正常',
|
|
2=>'已领完',
|
|
3=>'禁用',
|
|
],
|
|
'status_label'=>[
|
|
'default' => 'primary',
|
|
0 => 'info',
|
|
1 => 'success',
|
|
2 => 'warning',
|
|
3 => 'danger',
|
|
-1=> 'danger'
|
|
],
|
|
//优惠卷 - 类型 type
|
|
'type'=>[
|
|
1=>'全平台',
|
|
2=>'线上',
|
|
3=>'线下',
|
|
],
|
|
//优惠卷 - 分类 category
|
|
'category'=>[
|
|
1=>'订单'
|
|
],
|
|
//优惠卷 - 是否新用户
|
|
'is_new_user'=>[
|
|
1=>'是',
|
|
2=>'否',
|
|
],
|
|
//优惠卷 - 发布优惠卷时,间隔最少时间
|
|
'interval_time_min'=>3600,
|
|
//优惠卷 - 设置
|
|
'setting_category'=>[
|
|
1=>[
|
|
'name' => '领取类型',
|
|
'active' => true
|
|
],
|
|
],
|
|
//优惠卷 - 折扣类型
|
|
'discount_type'=>[
|
|
1=>'金额',
|
|
2=>'打折(%)',
|
|
],
|
|
//优惠卷 - 活动类型 active_type
|
|
'active_type'=>[
|
|
1=>'领取活动',
|
|
2=>'转发活动',
|
|
3=>'返券专用'
|
|
]
|
|
];
|