|
@@ -84,12 +84,13 @@ export default {
|
|
|
this.passwordError = false
|
|
|
this.passwordConfirmError = false
|
|
|
if (this.checked) {
|
|
|
- this.loading = true
|
|
|
this.$refs['ruleForm'].validate((valid) => {
|
|
|
if (valid) {
|
|
|
+ this.loading = true
|
|
|
if (this.$route.query.teamIds) {
|
|
|
this.teamIds = this.$route.query.teamIds.split(',')
|
|
|
}
|
|
|
+ let teamIds = this.teamIds || null
|
|
|
post('/pdf-tech/vppMember/create', {
|
|
|
email: this.ruleForm.email,
|
|
|
verifyCode: this.ruleForm.verificationCode,
|
|
@@ -99,7 +100,7 @@ export default {
|
|
|
industry: this.ruleForm.industry,
|
|
|
company: this.ruleForm.company,
|
|
|
code: this.$route.query.code,
|
|
|
- teamIds: this.teamIds
|
|
|
+ teamIds: teamIds
|
|
|
}).then((res) => {
|
|
|
this.loading = false
|
|
|
if (
|