53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
||
|
||
return [
|
||
// 应用名称
|
||
'app_name' => '子春生',
|
||
|
||
// 订单支付过期时间(秒)
|
||
'order_payment_expires_at' => 1800,
|
||
|
||
// 售后过期时间(天)
|
||
'sale_after_expire_days' => 7,
|
||
|
||
// 签到配置,每次积分、连续N天、连续奖励积分
|
||
'sign_click_points'=>5,
|
||
'sign_click_continue'=>7,
|
||
'sign_click_continue_points'=>10,
|
||
|
||
// 文章分类配置: 帮助、协议、健康
|
||
'article_help'=>1,
|
||
'article_agreement'=>2,
|
||
'article_health'=>3,
|
||
// 指定内容链接:关于我们,服务协议,隐私协议
|
||
'article_about_us'=>env('APP_URL', '').'/h5/articles/1',
|
||
'article_user_promotion_agreement'=>env('APP_URL', '').'/h5/articles/2',
|
||
'article_user_hide_agreement'=>env('APP_URL', '').'/h5/articles/3',
|
||
|
||
// 快递100是否开启
|
||
'kuaidi100_is_use' => true,
|
||
'kuaidi100_callback'=> env('APP_URL', '').'/callback/kuaidi100',
|
||
'kuaidi100_app_key'=> 'BTvgbjti4727',
|
||
'kuaidi100_customer'=> '064109188EC4D85DA655DFC342144C6A',
|
||
'kuaidi100_secret'=> '1bd287d1981749f2a30ea74cac0ab99c',
|
||
'kuaidi100_userid'=> 'ec0b6ec7729d4f22824cfd3c519dd45b',
|
||
|
||
//推送
|
||
'mall_push_app_id'=>'iikmCoESID8bC1LhOPG1r8',
|
||
'mall_push_app_key'=>'JX33P0wP8bAQprI953hpN6',
|
||
'mall_push_app_secret'=>'a3u3B6lXjq6fPTBlOGiOc9',
|
||
'mall_push_master_secret'=>'MAxmqomwo597xJeDuMCvx1',
|
||
|
||
'merchant_push_app_id'=>'',
|
||
'merchant_push_app_key'=>'',
|
||
'merchant_push_app_secret'=>'',
|
||
'merchant_push_master_secret'=>'',
|
||
|
||
//邀请路径
|
||
'invite_uri'=>'',
|
||
|
||
//app配置
|
||
'user_center_is_open'=>true,
|
||
|
||
];
|