17 lines
266 B
JavaScript
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() |