Index.ts 306 B

12345678910111213141516
  1. const tagInfo = "[/libs/model/Index.ts]:";
  2. import Http from "../net/Http";
  3. /**
  4. * 首页
  5. */
  6. const Index = {
  7. async login(username: string, password: string) {
  8. let url = "/verify_mobile/index/login";
  9. let res = await Http.post(url, { username, password });
  10. return res;
  11. }
  12. };
  13. export default Index;