24 lines
670 B
PHP
24 lines
670 B
PHP
<?php
|
|
|
|
use addons\webman\model\SystemSetting;
|
|
|
|
return [
|
|
'title' => '首充奖励',
|
|
'fields' => [
|
|
'model' => '发放模式',
|
|
'type' => '奖励类型',
|
|
'number' => '奖励coin',
|
|
'number_percent' => '奖励百分比',
|
|
'chip_amount' => '提现打码倍数',
|
|
'add_number' => '累计充值',
|
|
],
|
|
'model' => [
|
|
SystemSetting::FIRST_RECHARGE_MODEL_ONE => '一次性发放',
|
|
SystemSetting::FIRST_RECHARGE_MODEL_ADD => '累计发放',
|
|
],
|
|
'type' => [
|
|
SystemSetting::FIRST_RECHARGE_TYPE_VALUE => '固定额度',
|
|
SystemSetting::FIRST_RECHARGE_TYPE_PERCENT => '百分比',
|
|
]
|
|
];
|