Files
2024-09-27 02:06:13 +08:00

14 lines
250 B
JavaScript

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