JS网站的传参带中文的转换用decodeURI
let hashes = window.location.href.slice(window.location.href.indexOf('?') + 1)
hashes = decodeURI(hashes)
hashes = hashes.split('&')
let hashes = window.location.href.slice(window.location.href.indexOf('?') + 1)
hashes = decodeURI(hashes)
hashes = hashes.split('&')