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