12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- use think\facade\Env;
- return [
-
- 'app_host' => Env::get('app.host', ''),
-
- 'app_namespace' => '',
-
- 'with_route' => true,
-
- 'with_event' => true,
-
- 'default_app' => 'shop',
-
- 'default_timezone' => 'Asia/Shanghai',
-
- 'app_map' => [],
-
- 'domain_bind' => [],
-
- 'deny_app_list' => [],
-
- 'exception_tmpl' => app()->getThinkPath() . 'tpl/think_exception.tpl',
-
- 'error_message' => '页面错误!请稍后再试~',
-
- 'show_error_msg' => true,
- 'coupon_type'=>[
- '1'=>'无门槛',
- '2'=>'折扣劵',
- '3'=>'满减劵',
- ],
- 'prize_type'=>[
- '0'=>'谢谢参与',
- '1'=>'积分',
- '2'=>'囧币',
- ],
- 'mini_program'=>[
- 'app_id' => 'wxf3b25ca529432d75',
- 'secret' => '9b31b703c93ae4cb5bc1d82961784274',
- 'mch_id' => '1614043635',
- 'key' => 'A4031e44d9e869446549257afb536a06',
- 'notify_url' => '',
- ],
- ];
|