Files
ClassContent/历届学生/fontendsix/项目练习/上课项目/hbx-tpl/service/indexService.js
2024-09-27 02:06:13 +08:00

13 lines
287 B
JavaScript

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