26 lines
923 B
PHP
Executable File
26 lines
923 B
PHP
Executable File
<?php
|
|
# @Author: fm453
|
|
# @Date: 1970-01-01T08:00:00+08:00
|
|
# @Email: fm43@hiluker.com
|
|
# @Last modified by: fm453
|
|
# @Last modified time: 2021-09-14T23:20:49+08:00
|
|
|
|
return [
|
|
'configGroup' => [
|
|
1 => '基本配置',
|
|
2 => '邮箱配置',
|
|
3 => '附件配置',
|
|
],
|
|
'adminEmail' => 'fm453@lukegzs.com',
|
|
'noticeEmail' => '393213759@qq.com',
|
|
//默认值组
|
|
'defaultAdminPassword' => 'Hi12345678', //默认的管理员密码
|
|
'defaultAdminAvatar' => '@web/img/profile_small.png', //默认管理员头像
|
|
'defaultSuperRoleId' => 1, //默认的超级管理员角色id
|
|
'defaultSuperAdminId' => 1, //默认的超级管理员id
|
|
'siteOpenTime' => '8:00', //上班时间
|
|
'siteCloseTime' => '20:00', //歇业时间
|
|
'defaultAttributeValue' => '(未设置)', //空值默认
|
|
'defaultActionColumnButtonOption' => ['class' => 'btn btn-white btn-xs'], //列表页操作按钮选项
|
|
];
|