|
@@ -345,7 +345,8 @@ export default {
|
|
|
var href = window.location.href;
|
|
|
if (href.indexOf('path') > 0) {
|
|
|
const linkAddress = href.split('path=/#')[1]
|
|
|
- this.$router.push(linkAddress);
|
|
|
+ const paths = linkAddress.split('&hasTriedAutoLogin')[0]
|
|
|
+ this.$router.push(paths)
|
|
|
}
|
|
|
},
|
|
|
|