Commit d9eb7692 authored by youjie's avatar youjie

no message

parent 0f56c428
......@@ -961,12 +961,18 @@
next()
} else if (that.openMode == 0 && to.query.blank && to.query.blank == 'y') {
let dom = document.querySelector("#blankLink")
dom.href = `http://${window.location.host}/#${to.fullPath}`
dom.click()
} else {
next()
}
// let dom = document.querySelector("#blankLink")
// dom.target = '_blank';
// dom.href = `http://${window.location.host}/#${to.fullPath}`
// dom.click()
var el = document.createElement("a");
document.body.appendChild(el);
el.href = `http://${window.location.host}/#${to.fullPath}`;
el.target = '_blank';
el.click();
} else {
next()
}
});
this.$nextTick(function () {
document.title = this.$route.meta.title ? this.$route.meta.title : ''
......
......@@ -686,7 +686,7 @@
}else if(type==5){//排名
name = 'salesVolumeRank'
this.$router.push({
path: name,
name: name,
query: {
tStartDates: this.PMMsg.tStartDates,
blank: 'y'
......
......@@ -52,8 +52,8 @@
border-radius: 0 !important;
}
/deep/.relative-position .el-progress-bar__inner{
text-align: center;
/* text-indent: 10px; */
text-align: left;
text-indent: 10px;
border-radius: 0 !important;
}
/deep/.relative-position:first-child .el-progress{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment