mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
76 lines
3.3 KiB
PHP
76 lines
3.3 KiB
PHP
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
// 当前资源URL目录
|
||
var _root = (function () {
|
||
var scripts = document.scripts, src = scripts[scripts.length - 1].src;
|
||
return src.substring(0, src.lastIndexOf("/") + 1);
|
||
})();
|
||
|
||
// RequireJs 配置参数
|
||
require.config({
|
||
waitSeconds: 0,
|
||
baseUrl: _root,
|
||
map: {'*': {css: _root + '../plugs/require/require.css.js'}},
|
||
paths: {
|
||
// 自定义插件(源码自创建或已修改源码)
|
||
'admin.plugs': ['plugs'],
|
||
'admin.listen': ['listen'],
|
||
'template': ['../plugs/template/template'],
|
||
'pcasunzips': ['../plugs/jquery/pcasunzips'],
|
||
// 开源插件(未修改源码)
|
||
'pace': ['../plugs/jquery/pace.min'],
|
||
'json': ['../plugs/jquery/json2.min'],
|
||
'layui': ['../plugs/layui/layui'],
|
||
'jquery': ['../plugs/jquery/jquery.min'],
|
||
'base64': ['../plugs/jquery/base64.min'],
|
||
'angular': ['../plugs/angular/angular.min'],
|
||
'ckeditor': ['../plugs/ckeditor/ckeditor'],
|
||
'websocket': ['../plugs/socket/websocket'],
|
||
'bootstrap': ['../plugs/bootstrap/js/bootstrap.min'],
|
||
'bootstrap.typeahead': ['../plugs/bootstrap/js/bootstrap3-typeahead.min'],
|
||
'jquery.ztree': ['../plugs/ztree/jquery.ztree.all.min'],
|
||
'jquery.masonry': ['../plugs/jquery/masonry.min'],
|
||
'jquery.cookies': ['../plugs/jquery/jquery.cookie'],
|
||
},
|
||
shim: {
|
||
'layui': {deps: ['jquery']},
|
||
'ckeditor': {deps: ['jquery']},
|
||
'websocket': {deps: [_root + '../plugs/socket/swfobject.min.js']},
|
||
'pcasunzips': {deps: ['jquery']},
|
||
'admin.plugs': {deps: ['jquery', 'layui']},
|
||
'admin.listen': {deps: ['jquery', 'jquery.cookies', 'admin.plugs']},
|
||
'bootstrap': {deps: ['jquery']},
|
||
'bootstrap.typeahead': {deps: ['bootstrap']},
|
||
'jquery.ztree': {deps: ['jquery', 'css!' + _root + '../plugs/ztree/zTreeStyle/zTreeStyle.css']},
|
||
'jquery.cookies': {deps: ['jquery']},
|
||
'jquery.masonry': {deps: ['jquery']},
|
||
},
|
||
// deps: [],
|
||
// 开启debug模式,不缓存资源
|
||
// urlArgs: "ver=" + (new Date()).getTime()
|
||
});
|
||
|
||
// UI框架初始化
|
||
PageLayout.call(this);
|
||
function PageLayout(callback, custom, basic) {
|
||
window.WEB_SOCKET_SWF_LOCATION = _root + "../plugs/socket/WebSocketMain.swf";
|
||
require(basic || ['pace', 'jquery', 'layui', 'bootstrap'], function () {
|
||
layui.config({dir: _root + '../plugs/layui/'});
|
||
layui.use(['layer', 'form', 'laydate'], function () {
|
||
window.layer = layui.layer, window.form = layui.form, window.laydate = layui.laydate;
|
||
require(custom || ['admin.listen', 'ckeditor'], callback || false);
|
||
});
|
||
});
|
||
}
|