feat:traffic 配置初版

This commit is contained in:
wangwenrui
2020-04-28 17:39:54 +08:00
parent e50dbec90a
commit 78c30487a5
6 changed files with 854 additions and 1 deletions

View File

@@ -8,3 +8,10 @@ export function resetZIndex(e){
pop.style.zIndex=999999;
},100)
}
export function getUUID(){
function S4() {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
}
return (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4());
}