@@ -152,6 +152,15 @@ export default {
this.$router.replace('/home');
} else {
this.$router.back();
+ try{
+ setTimeout(()=>{
+ let path = window.location.hash.slice(1)
+ this.$router.replace(path)
+ },1)
+ return false
+ }catch(e){
+
+ }
}
}, 1500);
});