refactor(rest-api):抽取请求地址

This commit is contained in:
zhengxinonly
2021-07-27 00:12:06 +08:00
parent a35d443fb6
commit b26237e24b
500 changed files with 121 additions and 115 deletions
@@ -0,0 +1,13 @@
layui.define(['jquery', 'element','util'], function(exports) {
"use strict";
var MOD_NAME = 'topBar',
$ = layui.jquery,
util = layui.util,
element = layui.element;
var topBar = new function() {
util.fixbar({});
}
exports(MOD_NAME,topBar);
});