login.js 364 Bytes
import request from "@/utils/request";
import SERVER from "./config";

export function loginIn(username, password) {
  return request({
    url: `${SERVER.MANAGEMENTAPI}/login?username=${username}&password=${password}`,
    method: "post",
  });
}
export function logout() {
  return request({
    url: `${SERVER.MANAGEMENTAPI}/logout`,
    method: "post",
  });
}