diff --git a/app/common/repositories/system/CacheRepository.php b/app/common/repositories/system/CacheRepository.php index 167afb4..076de7e 100755 --- a/app/common/repositories/system/CacheRepository.php +++ b/app/common/repositories/system/CacheRepository.php @@ -70,6 +70,8 @@ class CacheRepository extends BaseRepository const LOTTERY_RULE = 'the_lottery_rule'; //抽奖规则 const LOTTERY_RULE2 = 'the_lottery_rule2'; + //提现规则 + const WITHDRAW_RULE = 'the_withdraw_rule'; public function getAgreeList($type) { @@ -80,6 +82,7 @@ class CacheRepository extends BaseRepository ['label' => '注销重要提示', 'key' => self::CANCELLATION_PROMPT], ['label' => '抽奖规则', 'key' => self::LOTTERY_RULE2], ['label' => '预存注意事项', 'key' => self::LOTTERY_RULE], + ['label' => '提现说明', 'key' => self::WITHDRAW_RULE], ]; if (!$type) { // $data[] = ['label' => '注销声明', 'key' => self::CANCELLATION_MSG]; @@ -112,6 +115,7 @@ class CacheRepository extends BaseRepository self::SYS_SVIP, self::LOTTERY_RULE, self::LOTTERY_RULE2, + self::WITHDRAW_RULE, ]; }