getParam : function(){
return (key, strURL = window.location.search) => new RegExp("(^|\\?|&)" + key + "=([^&]*)(\\s|&|$)", "i").test(strURL) ?
decodeURIComponent(RegExp.$2.replace(/\+/g, " ")) : "";
},
2022-10-01 14:50:06
getParam : function(){
return (key, strURL = window.location.search) => new RegExp("(^|\\?|&)" + key + "=([^&]*)(\\s|&|$)", "i").test(strURL) ?
decodeURIComponent(RegExp.$2.replace(/\+/g, " ")) : "";
},