您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456
  1. import { Post } from './index';
  2. export const loginAPI = async (username, password) => {
  3. const body = JSON.stringify({ Username: username, Password: password });
  4. return Post(`api/login`, body);
  5. };