19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
|
|
window.rootPath = (function (src) {
|
||
|
|
src = document.scripts[document.scripts.length - 1].src;
|
||
|
|
return src.substring(0, src.lastIndexOf("/") + 1);
|
||
|
|
})();
|
||
|
|
|
||
|
|
layui.config({
|
||
|
|
base: rootPath + "module/",
|
||
|
|
version: true
|
||
|
|
}).extend({
|
||
|
|
admin: "admin",
|
||
|
|
menu:"menu",
|
||
|
|
frame:"frame",
|
||
|
|
tab:"tab",
|
||
|
|
echarts:"echarts",
|
||
|
|
echartsTheme:"echartsTheme",
|
||
|
|
hash:"hash",
|
||
|
|
document:"document",
|
||
|
|
select:"select"
|
||
|
|
});
|