13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
import Http from "../http/index";
|
|
import config from "../config/index"
|
|
|
|
export default class indexService {
|
|
async home (data = {}, headers = {}) {
|
|
return await (new Http()).get({
|
|
url: config.apiList.home,
|
|
data: data,
|
|
headers: headers
|
|
})
|
|
}
|
|
|
|
} |