|
@@ -66,7 +66,8 @@ export default {
|
|
|
"IndustryReport",
|
|
|
];
|
|
|
if (JSON.stringify(optios) !== "{}" && optios.path) {
|
|
|
- let pathUrl = optios.path.split("/")[2];
|
|
|
+ let new_url = optios.path.split("/")[2];
|
|
|
+ let pathUrl = decodeURIComponent(new_url);
|
|
|
this.urlPath = urlType.includes(pathUrl) ? "/" + pathUrl : pathUrl == "reportPage" ? "/reportDetail" : "/index";
|
|
|
this.queryList = optios.query || "";
|
|
|
}
|