12 lines
272 B
JavaScript
12 lines
272 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"
|
||
|
|
});
|