sProp是需要获取的参数
getParameter(sProp) {
var re = new RegExp(sProp + "=([^\&]*)", "i");
var a = re.exec(document.location.search);
if (a == null)
return null;
return a[1];
},