ctms/addons-nativeapp/config/params-local.php
2025-04-10 23:19:13 +08:00

130 lines
5.0 KiB
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
# @Author: 嗨噜客科技(www.hiluker.cn) <Fm453>
# @Date: 1970-01-01T08:00:00+08:00
# @Email: fm453@hiluker.com
# @Last modified by: fm453
# @Last modified time: 2024-06-29T16:40:55+08:00
return [
'adminEmail' => 'fm453@lukegzs.com',
'developerWx' => '18608981880',
//默认值组
'defaultAdminPassword' => 'Hi12345678', //默认的管理员密码
'defaultAdminAvatar' => '@web/img/profile_small.png', //默认管理员头像
'defaultUserPassword' => '12345678', //默认的用户密码
'defaultUserAvatar' => '@web/img/profile_small.png', //默认管理员头像
'defaultFansPassword' => '88888888', //默认的粉丝用户密码
'defaultSuperRoleId' => 1, //默认的超级管理员角色id
'defaultSuperAdminId' => 1, //默认的超级管理员id
'siteOpenTime' => '8:00', //上班时间
'siteCloseTime' => '20:00', //歇业时间
'defaultAttributeValue' => '(未设置)', //空值默认
'defaultActionColumnButtonOption' => ['class' => 'btn btn-white btn-xs'], //列表页操作按钮选项
//阿里大鱼短信接口
'aliDySms'=>[
'accessKeyId'=>'LTAIQrJFtHfqsyOt',
'accessKeySecret'=>'tvGieI3vNI7Si3imauCB4rJ3OX4AR8',
'sign'=>'嗨路客',
'reportQueueName'=>'Alicom-Queue-31737903-SmsReport', //状态报告接收
'UpQueueName'=>'Alicom-Queue-31737903-SmsUp', //上行消息接收
'tmpl'=>[
'vcode'=>'SMS_116560526', //常规验证码
'acBirthday'=>'SMS_175060008', //运车平台客户生日祝福
'cwVcode'=>'SMS_175060662', //财务操作验证码
'acGongxue'=>'SMS_152288813', //宫雪群发通知地址变更
'shopOrderConfirmBuyer'=>'SMS_121905194', //商城订单确认通知下单人
'shopOrderGm'=>'SMS_121910220', //商城订单知会管理员
'shopOrderBuyer'=>'SMS_121850165', //商城订单知会下单人
'meVcode'=>'SMS_116695056', //身份验证验证码
'meChangeVcode'=>'SMS_116695050', //重要信息变更验证码
'loginVcode'=>'SMS_116695054', //登陆确认验证码
'addrNotice'=>'SMS_175050843', //托车地址知会
]
],
'amap'=>[
'key'=>'fea3f28a32780b33d97b2afb9a5236fe', //高德地图网页API-key
],
//平台ID
'siteId'=>10, //每个站点ID对应一套数据集
// 'app_id'=>1, //站点内允许存在多个应用
// 'pid'=>1, //多个应用共用某个平台数据集时约定平台ID
'customerLevels' => [
0 => '中',
1 => '差',
2 => '良',
99 => '优',
], //用户评级
'attachSrc'=>'//'.$_SERVER['HTTP_HOST'], //附件远程地址
'attachDir'=>'/upload-ctms', //附件远程目录
'TruckStatus' => [
0 => '待入库',
1 => '正常',
2 => '检修',
3 => '保养',
4 => '装车中',
5 => '在途',
99 => '锁定',
], //板车状态
'TruckOnlineStatus' => [
0 => '待出发',
1 => '进行中',
99 => '已运达',
], //板车任务状态
'TruckCarsStatus' => [
0 => '待承运',
1 => '运输中',
80 => '报障待处理',
99 => '已运达',
], //小车在承运板车上的状态
'gender'=>['0'=>'未设置','1'=>'男','2'=>'女'], //性别
'CommonStatus'=>['0'=>'隐藏','1'=>'显示'], //常规状态集
'EmployeeStatus'=>['0'=>'离职','1'=>'在职'], //用户在职状态集
'DriverStatus'=>['0'=>'离职','1'=>'在职','2'=>'外援'], //司机状态集
'OrderStatus' => [
-1 => '已取消',
0 => '预备中',
1 => '协议签定',
2 => '运输中',
3 => '已运达',
4 => '已交车',
5 => '待承运',
6 => '待提车',
7 => '待入库', //与提车关联
99 => '完成',
], //订单状态
'AlbumStatus' => [
-1 => '已隐藏',
0 => '标准',
99 => '完结',
], //相册状态
'DefaultCarInsuranceValueMax'=>20, //默认车辆保额;万元
'DefaultCommissionMoreMax'=>100, //默认最多可多支付的佣金金额;元
'Paytype'=>[
0=>'现金',
1=>'微信扫码',
2=>'微信转账',
3=>'支付宝扫码',
4=>'支付宝转账',
5=>'银行卡转账',
6=>'对公转账',
7=>'挂账月结',
99=>'其他'
], //支付方式
'PayStatus'=>[
0=>'待确认',
1=>'已确认入账', //入账对关联金额数字有影响
-1=>'财务已驳回',
-2=>'确认冲红',
2=>'申请冲红',
99=>'仅确认不入账', //不入账则只做记录,不影响相关金额数字
], //支付状态集
'PayStatusRequireArr'=>[
1=>[0,-1,99],
-1=>[0,2],
-2=>[2],
99=>[0,-1],
], //费用单支付状态在财审时的前置状态要求
'H5Links'=>'//h5.ctms.localhost/',
];