feat: 合并1.1.1,升级版本到2.0.8

This commit is contained in:
奔跑的面条
2022-09-27 20:28:47 +08:00
128 changed files with 2438 additions and 28199 deletions
+3 -4
View File
@@ -1,4 +1,3 @@
/**
* * 存储本地会话数据
* @param k 键名
@@ -29,7 +28,7 @@ export const getLocalStorage = (k: string) => {
/**
* * 清除本地会话数据
* @param name
* @param name
*/
export const clearLocalStorage = (name: string) => {
window.localStorage.removeItem(name)
@@ -64,7 +63,7 @@ export const getSessionStorage: (k: string) => any = (k: string) => {
/**
* * 清除本地会话数据
* @param name
* @param name
*/
export const clearSessioStorage = (name: string) => {
window.sessionStorage.removeItem(name)
@@ -106,4 +105,4 @@ export const getCookie = (cname: string) => {
*/
export const clearCookie = (name: string) => {
setCookie(name, "", -1);
}
}