function getUrlParams(url) {
let o = {};
if (url.indexOf("?") != -1) {
let str = url.substr(url.indexOf("?") + 1).replace(/[#/|/#/]/g, "");
console.log(str);
let strs = str.split("&");
console.log(strs);
for (let i = 0; i < strs.length; i++) {
o[strs[i].split("=")[0]] = decodeURIComponent(strs[i].split("=")[1]);
}
}
return o;
}