|
@@ -41,7 +41,9 @@ export default {
|
|
|
},
|
|
|
async created () {
|
|
|
const { name } = this.$route
|
|
|
- if (name !== 'PaymentCode') {
|
|
|
+ const { redirectUrl } = this.$route.query
|
|
|
+ // 为中转页的时候不调用
|
|
|
+ if (name !== 'PaymentCode' && !redirectUrl) {
|
|
|
this.$store.dispatch('common/getUserInfo')
|
|
|
this.$store.dispatch('common/getOrdertype')
|
|
|
}
|