user.ts 354 Bytes
import type { UserInfo } from "@/stores/user";
import { clxAjax } from ".";

/** 登录接口 */
export const loginRequset = () => {
  return clxAjax.post<UserInfo>("user-service/owner/user/login", {
    captcha: "11",
    mobile: "12222222222",
    platform: 6,
    pwd: "e10adc3949ba59abbe56e057f20f883e",
  });
};

export default {
  loginRequset,
};