|
@@ -90,7 +90,8 @@ export default {
|
|
|
let str=''
|
|
|
const baseUrl= localStorage.getItem('dynamicOutLinks') ? JSON.parse(localStorage.getItem('dynamicOutLinks')).ReportViewUrl : '';
|
|
|
if(this.$route.query.code){
|
|
|
- str=`${baseUrl}/reportshare_smart_report?code=${this.$route.query.code}`
|
|
|
+ // 加 & 是防止影响到上一个参数
|
|
|
+ str=`${baseUrl}/reportshare_smart_report?code=${this.$route.query.code}& ${this.reportInfo && this.reportInfo.Title}`
|
|
|
}
|
|
|
return str
|
|
|
},
|