Files
ClassContent/历届学生/韩想/min/service/HomeService.js
2024-09-27 02:06:13 +08:00

13 lines
272 B
JavaScript

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