13 lines
272 B
JavaScript
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(); |