|
@@ -35,19 +35,15 @@ export default {
|
|
|
'$route.name': {
|
|
|
handler: function (newVal) {
|
|
|
this.active = newVal
|
|
|
+ // 为中转页的时候不调用
|
|
|
+ if (!this.$store.getters['common/isInit'] && newVal !== 'PaymentCode' && newVal !== 'ShareMiddle') {
|
|
|
+ this.$store.dispatch('common/getUserInfo')
|
|
|
+ this.$store.dispatch('common/getOrdertype')
|
|
|
+ this.$store.commit('common/UPDATE_ISINIT', true)
|
|
|
+ }
|
|
|
},
|
|
|
immediate: true
|
|
|
}
|
|
|
- },
|
|
|
- async created () {
|
|
|
- const { name } = this.$route
|
|
|
- console.log(111)
|
|
|
- // 为中转页的时候不调用
|
|
|
- if (name !== 'PaymentCode' && name !== 'ShareMiddle') {
|
|
|
- console.log(222)
|
|
|
- this.$store.dispatch('common/getUserInfo')
|
|
|
- this.$store.dispatch('common/getOrdertype')
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
</script>
|