Files
ClassContent/历届学生/吴欣阳/项目开发/上课项目/uniapp 模板/serve/indexServe.js
2024-09-27 02:06:13 +08:00

15 lines
250 B
JavaScript

import http from "../http";
import config from "../config";
export default class IndexServe {
async home (data = {}, header = {}) {
return await http.get({
url: config.urlList.index,
data: data,
header: header
})
}
}