| 12345678910111213141516171819202122232425262728293031 |
- <?php
- //配置文件
- return [
- // 模板参数替换
- 'view_replace_str' => [
- '__CSS__' => '/static/admin/css',
- '__JS__' => '/static/admin/js',
- '__IMG__' => '/static/admin/images',
- '__EDIT__' => '/static/kindeditor',
- '__ENTRANCE__' => '/static/entranceJs',
- ],
- // 客服状态
- 'kf_status' => [
- 1 => '启用',
- 2 => '禁用'
- ],
- // 客服状态
- 'host' => [
- 1 => '是',
- 2 => '否'
- ],
- // 是否在线
- 'online' => [
- 1 => '在线',
- 2 => '离线'
- ]
- ];
|