@@ -105,7 +105,7 @@ import { usePermissionStore } from '@/store/modules/permission'
105
105
import * as LoginApi from ' @/api/login'
106
106
import { LoginStateEnum , useLoginState } from ' ./useLogin'
107
107
108
- defineOptions ({ name: ' LoginForm ' })
108
+ defineOptions ({ name: ' RegisterForm ' })
109
109
110
110
const { t } = useI18n ()
111
111
const iconHouse = useIcon ({ icon: ' ep:house' })
@@ -159,7 +159,7 @@ const registerData = reactive({
159
159
captchaEnable: import .meta .env .VITE_APP_CAPTCHA_ENABLE ,
160
160
tenantEnable: import .meta .env .VITE_APP_TENANT_ENABLE ,
161
161
registerForm: {
162
- tenantName: ' ' ,
162
+ tenantName: import . meta . env . VITE_APP_DEFAULT_LOGIN_TENANT || ' ' ,
163
163
nickname: ' ' ,
164
164
tenantId: 0 ,
165
165
username: ' ' ,
@@ -169,7 +169,8 @@ const registerData = reactive({
169
169
}
170
170
})
171
171
172
- async function handleRegister(params ) {
172
+ // 提交注册
173
+ const handleRegister = async (params : any ) => {
173
174
loading .value = true
174
175
try {
175
176
if (registerData .tenantEnable ) {
@@ -181,11 +182,6 @@ async function handleRegister(params) {
181
182
registerData .registerForm .captchaVerification = params .captchaVerification
182
183
}
183
184
184
- console .log (
185
- ' registerData.registerForm.captchaVerification====' ,
186
- registerData .registerForm .captchaVerification
187
- )
188
-
189
185
const res = await LoginApi .register (registerData .registerForm )
190
186
if (! res ) {
191
187
return
@@ -225,6 +221,7 @@ const getCode = async () => {
225
221
verify .value .show ()
226
222
}
227
223
}
224
+
228
225
// 获取租户 ID
229
226
const getTenantId = async () => {
230
227
if (registerData .tenantEnable === ' true' ) {
0 commit comments