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