二种新窗口打开的区别:
window.open("URL",'top'); 只是表示打开这个页面,并不是打开并刷新页面;
window.location.href="URL"; 表示重新定向到新页面,同时刷新打开的这个页面;
window.location.href=config.default.baseUrl.dev+'/reportOne?orderCode='+this.code+'&token='+token;
window.open(config.default.baseUrl.dev+'/reportOne?orderCode='+this.code+'&token='+token);