|
@@ -44,8 +44,12 @@ export default {
|
|
|
booLock: false
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
- this.fetchUserDetail()
|
|
|
+ activated () {
|
|
|
+ if (!this.$route.meta.isUseCache) {
|
|
|
+ this.userDetail = {}
|
|
|
+ this.fetchUserDetail()
|
|
|
+ }
|
|
|
+ this.$route.meta.isUseCache = false
|
|
|
},
|
|
|
methods: {
|
|
|
async fetchUserDetail () {
|
|
@@ -74,6 +78,12 @@ export default {
|
|
|
this.booLock = false
|
|
|
}
|
|
|
}
|
|
|
+ },
|
|
|
+ beforeRouteLeave (to, form, next) {
|
|
|
+ if (['OrderList', 'PlaceReserve'].findIndex(item => item === to.name) > -1) {
|
|
|
+ form.meta.isUseCache = true
|
|
|
+ }
|
|
|
+ next()
|
|
|
}
|
|
|
}
|
|
|
</script>
|