//伪装一下表单提交在新窗口
Vue.prototype.newWinUrl = function(url) {
var f = document.createElement("form");
f.setAttribute("action", url);
f.setAttribute("method", 'get');
f.setAttribute("target", '_black');
document.body.appendChild(f)
f.submit();
}
// 数字精度截取处理 小数位后直接舍去