Commit d9eb7692 authored by youjie's avatar youjie

no message

parent 0f56c428
...@@ -961,12 +961,18 @@ ...@@ -961,12 +961,18 @@
next() next()
} else if (that.openMode == 0 && to.query.blank && to.query.blank == 'y') { } else if (that.openMode == 0 && to.query.blank && to.query.blank == 'y') {
let dom = document.querySelector("#blankLink") // let dom = document.querySelector("#blankLink")
dom.href = `http://${window.location.host}/#${to.fullPath}` // dom.target = '_blank';
dom.click() // dom.href = `http://${window.location.host}/#${to.fullPath}`
} else { // dom.click()
next() 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 () { this.$nextTick(function () {
document.title = this.$route.meta.title ? this.$route.meta.title : '' document.title = this.$route.meta.title ? this.$route.meta.title : ''
......
...@@ -686,7 +686,7 @@ ...@@ -686,7 +686,7 @@
}else if(type==5){//排名 }else if(type==5){//排名
name = 'salesVolumeRank' name = 'salesVolumeRank'
this.$router.push({ this.$router.push({
path: name, name: name,
query: { query: {
tStartDates: this.PMMsg.tStartDates, tStartDates: this.PMMsg.tStartDates,
blank: 'y' blank: 'y'
......
...@@ -52,8 +52,8 @@ ...@@ -52,8 +52,8 @@
border-radius: 0 !important; border-radius: 0 !important;
} }
/deep/.relative-position .el-progress-bar__inner{ /deep/.relative-position .el-progress-bar__inner{
text-align: center; text-align: left;
/* text-indent: 10px; */ text-indent: 10px;
border-radius: 0 !important; border-radius: 0 !important;
} }
/deep/.relative-position:first-child .el-progress{ /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