This commit is contained in:
server
2025-09-15 17:00:22 +08:00
parent c2c6769f21
commit fbc87a40c6
24 changed files with 646 additions and 86 deletions
File diff suppressed because one or more lines are too long
@@ -228,3 +228,15 @@ const commonUtil = {
}
}
}
function GetQueryString(name) {
return new URLSearchParams(window.location.search).get(name)
}
function loc() {
return location.href.replace(location.search, "").replace(location.hash, "")
}
function clone(obj) {
return JSON.parse(JSON.stringify(obj))
}