17 lines
235 B
JavaScript
17 lines
235 B
JavaScript
class Index {
|
|
constructor () {
|
|
this.getIndexData()
|
|
}
|
|
|
|
|
|
async getIndexData() {
|
|
var res = await index.iclass({
|
|
type: 1,
|
|
page: 1
|
|
})
|
|
console.log(res)
|
|
}
|
|
}
|
|
|
|
new Index();
|