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

16 lines
287 B
JavaScript

class Index {
constructor() {
// console.log(config.getBaseUrl());
this.getClassList()
}
async getClassList() {
let res = await indexServe.classList({
id: 253,
page: 1
});
console.log(res);
}
}
new Index()