mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-17 16:35:53 +08:00
提交 buyer和seller退出uuid清空bug
This commit is contained in:
@@ -4,6 +4,7 @@ import { router } from "../router/index";
|
||||
import { Message } from "view-design";
|
||||
import Cookies from "js-cookie";
|
||||
import { handleRefreshToken } from "@/api/index";
|
||||
import {v4 as uuidv4} from 'uuid';
|
||||
|
||||
// 统一请求路径前缀
|
||||
export const baseUrl =
|
||||
@@ -30,7 +31,12 @@ service.interceptors.request.use(
|
||||
...config.params
|
||||
};
|
||||
}
|
||||
const uuid = getStore("uuid");
|
||||
let uuid = getStore("uuid");
|
||||
if (!uuid) {
|
||||
uuid = uuidv4();
|
||||
setStore('uuid', uuid);
|
||||
}
|
||||
|
||||
config.headers["uuid"] = uuid;
|
||||
return config;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user