From 51e933242c70b21027e8557c164520f74b2d1ed3 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 4 Aug 2022 17:07:10 +0800 Subject: [PATCH] BUG 30756 --- src/project/saas/AppAskForm/AppForm.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/project/saas/AppAskForm/AppForm.vue b/src/project/saas/AppAskForm/AppForm.vue index 12a0a431..b03dbd56 100644 --- a/src/project/saas/AppAskForm/AppForm.vue +++ b/src/project/saas/AppAskForm/AppForm.vue @@ -41,7 +41,7 @@ export default { methods: { ...mapActions(['getCode', 'getToken']), checkAccess(review) { - let {code, suiteId, id} = this.$route.query + let {code, suiteId, corpId, id} = this.$route.query if (this.isPreview) { this.access = true } else if (!!this.user.token) { @@ -59,7 +59,7 @@ export default { this.err = err }) } else if (code) { - this.getToken({code, suiteId}).then(() => this.checkAccess(true)) + this.getToken({code, corpId, suiteId}).then(() => this.checkAccess(true)) } else if (!review) this.getCode() else this.err = "登录失败!" },