mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update admin.js
This commit is contained in:
parent
25a2911c24
commit
907a21e0cc
@ -37,22 +37,15 @@ if (typeof Array.prototype.forEach !== 'function') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*! 脚本应用根路径 */
|
/*! 脚本应用根路径 */
|
||||||
window.appRoot = (function (src) {
|
var srcs = document.scripts[document.scripts.length - 1].src.split('/');
|
||||||
return src.pop(), src.pop(), src.join('/') + '/';
|
window.appRoot = srcs.slice(0, -2).join('/') + '/';
|
||||||
})(document.scripts[document.scripts.length - 1].src.split('/'));
|
|
||||||
|
|
||||||
/*! 静态插件库路径 */
|
/*! 静态插件库路径 */
|
||||||
window.baseRoot = (function (src) {
|
window.baseRoot = srcs.slice(0, -1).join('/') + '/';
|
||||||
return src.substring(0, src.lastIndexOf("/") + 1);
|
|
||||||
})(document.scripts[document.scripts.length - 1].src);
|
|
||||||
|
|
||||||
/*! 动态插件库路径 */
|
/*! 动态插件库路径 */
|
||||||
window.tapiRoot = window.tapiRoot || window.appRoot + "admin";
|
window.tapiRoot = window.tapiRoot || window.appRoot + "admin";
|
||||||
|
|
||||||
/*! 配置 layui 插件 */
|
|
||||||
layui.config({base: baseRoot + 'plugs/layui_exts/'});
|
|
||||||
|
|
||||||
/*! 挂载 layui & jquery 对象 */
|
/*! 挂载 layui & jquery 对象 */
|
||||||
|
layui.config({base: baseRoot + 'plugs/layui_exts/'});
|
||||||
window.form = layui.form, window.layer = layui.layer;
|
window.form = layui.form, window.layer = layui.layer;
|
||||||
window.laytpl = layui.laytpl, window.laydate = layui.laydate;
|
window.laytpl = layui.laytpl, window.laydate = layui.laydate;
|
||||||
window.jQuery = window.$ = window.jQuery || window.$ || layui.$;
|
window.jQuery = window.$ = window.jQuery || window.$ || layui.$;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user