Files
ClassContent/历届学生/front-end-team-11/项目开发/上课项目/uniapp-tpl/serve/home.js
2024-09-27 02:06:13 +08:00

11 lines
256 B
JavaScript

import api from "@/api/api";
import config from "@/config";
export default class HomeServe {
async index(data = {}, header = {}) {
return await api.getRequest({
url: config.apiList.index,
data, header
})
}
}