单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-09-12 4d9be1e572745750541be8be52a3cb30e1a8408f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from "@/utils/axios";
 
/**
 * 副屏退出登录Api
 * @returns
 */
export function logOutApi(params: string) {
  return request({
    url: "/user/info/logoutForSubScreen",
    method: "post",
    headers: {
      "Content-Type": "application/x-www-form-urlencoded",
    },
    data: params,
  });
}