//获取URL参数
getUrlKey(name) {
return (
decodeURIComponent(
(new RegExp("[?|&]" + name + "=" + "([^&;]+?)(&|#|;|$)").exec(
window.location.href
) || [, ""])[1].replace(/+/g, "%20")
) || null
);
},