Files
ClassContent/历届学生/front-end-team-11/项目开发/上课项目/js项目封装/js/serve/index.js
2024-09-27 02:06:13 +08:00

17 lines
266 B
JavaScript

class IndexServe {
async classList(data = {}, headers = {}) {
return await http.get({
url: config.urlList.classList,
data,
headers
});
}
async activity() {
}
}
var indexServe = new IndexServe()