|
@@ -128,7 +128,7 @@ export default {
|
|
|
const editerUrl = conf[process.env.NODE_ENV + '_editerUrl']
|
|
|
let data = `projectId=${this.plazaId}&fmapID=${this.fmapID}&token=${this.$store.state.ssoToken}`
|
|
|
let url = editerUrl + 'drafts?' + encodeURIComponent(data)
|
|
|
- window.open(url)
|
|
|
+ window.open(url, "drafts")
|
|
|
},
|
|
|
currentTime() {
|
|
|
this.times = moment().format('YYYY.MM.DD HH:mm')
|
|
@@ -179,7 +179,7 @@ export default {
|
|
|
dumpLegend() {
|
|
|
const { conf } = window.__systemConf
|
|
|
const wandaBmGuideUrl = conf[process.env.NODE_ENV + '_wandaBmGuideUrl']
|
|
|
- window.open(`${wandaBmGuideUrl}home/legendLibrary?token=${this.$store.state.ssoToken}`)
|
|
|
+ window.open(`${wandaBmGuideUrl}home/legendLibrary?token=${this.$store.state.ssoToken}`, "legendLibrary")
|
|
|
}
|
|
|
}
|
|
|
}
|