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