@@ -382,7 +382,13 @@ export default {
sessionStorage.setItem('collectionItemList', JSON.stringify(val.collectionItemList));
},
onClickLeft() {
- this.$router.go(-1);
+ if (this.$route.query.token) {
+ this.$router.push({
+ path: '/historicalVisit',
+ });
+ } else {
+ this.$router.go(-1);
+ }
};