Files
2024-09-27 02:06:13 +08:00

14 lines
311 B
JavaScript

import config from '../config/index'
import http from '../http/index'
class IndexService {
async home(data = {}, header = {}) {
return await (new http()).get({
url: config.urlList.index,
data: data,
headers: header
})
}
}
export default IndexService