import Config from "../config"; import Http from "../http/index"; class IndexService { async Index (data) { return await Http.Get({ url: Config.AjaxConfig.UrlList.Index, data: data }); } } export default new IndexService();