123456789101112131415161718 |
- <?php
- // +----------------------------------------------------------------------
- // | 模板设置
- // +----------------------------------------------------------------------
- return [
- // 模板常量
- 'tpl_replace_string' => [
- '__STATIC__' => '/static',
- '__COMMON_IMAGES__' => '/static/common/images',
- '__COMMON_CSS__' => '/static/common/css',
- '__COMMON_JS__' => '/static/common/js',
- '__MIMAGES__' => '/static/mobile/images',
- '__MCSS__' => '/static/mobile/css',
- '__MJS__' => '/static/mobile/js',
- '__COMPONENTS__' => '/static/mobile/js/components',
- ],
- ];
|