初始版本
This commit is contained in:
138
server/config/project.php
Executable file
138
server/config/project.php
Executable file
@@ -0,0 +1,138 @@
|
||||
<?php
|
||||
return [
|
||||
// 系统版本号
|
||||
'version' => '1.3.9',
|
||||
|
||||
// 官网
|
||||
'website' => [
|
||||
'name' => env('project.web_name', 'likeshop上门按摩'), // 网站名称
|
||||
'url' => env('project.web_url', 'www.likeshop.cn/'), // 网站地址
|
||||
'login_image' => 'resource/image/adminapi/default/web_login_image.png',//登录页图片
|
||||
'web_logo' => 'resource/image/adminapi/default/web_logo.png', // 网站logo
|
||||
'web_favicon' => 'resource/image/adminapi/default/web_favicon.ico', // 网站图标
|
||||
'shop_name' => 'likeshop上门按摩', // 商城名称
|
||||
'shop_logo' => 'resource/image/adminapi/default/shop_logo.png', // 商城图标
|
||||
],
|
||||
|
||||
// 唯一标识,密码盐、路径加密等
|
||||
'unique_identification' => env('project.unique_identification', 'likeadmin'),
|
||||
|
||||
// 后台管理员token(登录令牌)配置
|
||||
'admin_token' => [
|
||||
'expire_duration' => 3600 * 8,//管理后台token过期时长(单位秒)
|
||||
'be_expire_duration' => 3600,//管理后台token临时过期前时长,自动续期
|
||||
],
|
||||
|
||||
// 商城用户token(登录令牌)配置
|
||||
'user_token' => [
|
||||
'expire_duration' => 3600 * 24 * 7,//用户token过期时长(单位秒)
|
||||
'be_expire_duration' => 3600,//用户token临时过期前时长,自动续期
|
||||
],
|
||||
|
||||
// 技师用户token(登录令牌)配置
|
||||
'coach_user_token' => [
|
||||
'expire_duration' => 3600 * 24 * 7,//用户token过期时长(单位秒)
|
||||
'be_expire_duration' => 3600,//用户token临时过期前时长,自动续期
|
||||
],
|
||||
// 列表页
|
||||
'lists' => [
|
||||
'page_size_max' => 25000,//列表页查询数量限制(列表页每页数量、导出每页数量)
|
||||
'page_size' => 25, //默认每页数量
|
||||
],
|
||||
|
||||
// 各种默认图片
|
||||
'default_image' => [
|
||||
'admin_avatar' => 'resource/image/adminapi/default/avatar.png',
|
||||
'admin_ad' => 'resource/image/adminapi/default/ad.png',//广告
|
||||
'admin_goods_category' => 'resource/image/adminapi/default/goods_category.png',//服务分类
|
||||
'admin_goods_lists' => 'resource/image/adminapi/default/goods_lists.png',//服务列表
|
||||
'admin_index_decorate' => 'resource/image/adminapi/default/index_decorate.png',//首页装修
|
||||
'admin_order' => 'resource/image/adminapi/default/order.png',//订单列表
|
||||
'admin_staff' => 'resource/image/adminapi/default/staff.png',//师傅列表
|
||||
'admin_news_notice' => 'resource/image/adminapi/default/news_notice.png',//信息通知
|
||||
'admin_set_payment' => 'resource/image/adminapi/default/set_payment.png',//支付配置
|
||||
'user_avatar' => 'resource/image/api/default/avatar.png',//默认用户头像
|
||||
'default_coach_avatar' => 'resource/image/coachapi/default/avatar.png',//默认技师头像
|
||||
'default_shop_avatar' => 'resource/image/shopapi/default/avatar.png',//默认商家头像
|
||||
],
|
||||
|
||||
// 文件上传限制 (图片)
|
||||
'file_image' => [
|
||||
'jpg', 'png', 'gif', 'jpeg', 'webp'
|
||||
],
|
||||
|
||||
// 文件上传限制 (视频)
|
||||
'file_video' => [
|
||||
'wmv', 'avi', 'mpg', 'mpeg', '3gp', 'mov', 'mp4', 'flv', 'f4v', 'rmvb', 'mkv'
|
||||
],
|
||||
|
||||
// 登录设置
|
||||
'login' => [
|
||||
// 登录方式:1-账号密码登录;2-手机短信验证码登录
|
||||
'login_way' => ['1', '2'],
|
||||
// 注册强制绑定手机 0-关闭 1-开启
|
||||
'coerce_mobile' => 1,
|
||||
// 第三方授权登录 0-关闭 1-开启
|
||||
'third_auth' => 1,
|
||||
// 微信授权登录 0-关闭 1-开启
|
||||
'wechat_auth' => 1,
|
||||
// qq授权登录 0-关闭 1-开启
|
||||
'qq_auth' => 0,
|
||||
// 登录政策协议 0-关闭 1-开启
|
||||
'login_agreement' => 1,
|
||||
],
|
||||
|
||||
// 后台装修
|
||||
'decorate' => [
|
||||
// 底部导航栏样式设置
|
||||
'tabbar_style' => ['default_color' => '#999999', 'selected_color' => '#4173ff'],
|
||||
],
|
||||
|
||||
|
||||
// 产品code
|
||||
'product_code' => 'ae14b739e75b1e7b8983b8e5eca3236a',
|
||||
'check_domain' => 'https://server.likeshop.cn',
|
||||
|
||||
'order_setting' => [
|
||||
//取消订单付款订单
|
||||
'order_cancel_order' => 1,
|
||||
//倒计时取消时间
|
||||
'order_cancel_time' => 60,
|
||||
//订单完成后多少天内评论
|
||||
'over_time_comment' => 1,
|
||||
//评论内容
|
||||
'over_time_comment_content' => '此用户未填写评论内容',
|
||||
],
|
||||
'settle_setting' => [
|
||||
//佣金结算方式
|
||||
'commission_settle' => 1,
|
||||
//结算周期
|
||||
'commission_settle_cycle' => 1,
|
||||
//按周期(按周期时候的月或者周)
|
||||
'commission_settle_cycle_type' => 1,
|
||||
//天
|
||||
'commission_settle_cycle_day' => 1,
|
||||
|
||||
],
|
||||
'server_setting' => [
|
||||
//可提前预约天数
|
||||
'advance_appoint' => 7,
|
||||
//技师默认接单数量
|
||||
'coach_order_limit' => 1,
|
||||
//服务范围
|
||||
'coach_server_scope' => 100,
|
||||
//商家技师数量
|
||||
'shop_coach_limit' => 1,
|
||||
//商家订单数量
|
||||
'shop_order_limit' => 1,
|
||||
],
|
||||
//提现设置
|
||||
'withdraw' =>[
|
||||
'way_list' => [1,2,3],
|
||||
'min_money' => 10,
|
||||
'max_money' => 100,
|
||||
'service_charge' => 5,
|
||||
'withdraw_cycle_type' => 1,
|
||||
'withdraw_cycle_date' => 1,
|
||||
]
|
||||
];
|
||||
Reference in New Issue
Block a user