|
@@ -2,7 +2,7 @@
|
|
<div class="mt-3">
|
|
<div class="mt-3">
|
|
<v-form ref="emailRef" style="width: 100%;">
|
|
<v-form ref="emailRef" style="width: 100%;">
|
|
<v-text-field
|
|
<v-text-field
|
|
- v-model="query.email"
|
|
|
|
|
|
+ v-model.trim="query.email"
|
|
label="企业邮箱"
|
|
label="企业邮箱"
|
|
placeholder="请输入企业邮箱"
|
|
placeholder="请输入企业邮箱"
|
|
variant="outlined"
|
|
variant="outlined"
|
|
@@ -12,7 +12,7 @@
|
|
:rules="[v=> !!v || '请输入企业邮箱', v=> checkEmail(v) || '邮箱格式不正确']"
|
|
:rules="[v=> !!v || '请输入企业邮箱', v=> checkEmail(v) || '邮箱格式不正确']"
|
|
></v-text-field>
|
|
></v-text-field>
|
|
<v-text-field
|
|
<v-text-field
|
|
- v-model="query.code"
|
|
|
|
|
|
+ v-model.trim="query.code"
|
|
label="验证码"
|
|
label="验证码"
|
|
placeholder="请输入邮箱收到的验证码"
|
|
placeholder="请输入邮箱收到的验证码"
|
|
variant="outlined"
|
|
variant="outlined"
|
|
@@ -28,7 +28,7 @@
|
|
</v-form>
|
|
</v-form>
|
|
<v-form ref="passwordRef" style="width: 100%;">
|
|
<v-form ref="passwordRef" style="width: 100%;">
|
|
<v-text-field
|
|
<v-text-field
|
|
- v-model="query.password"
|
|
|
|
|
|
+ v-model.trim="query.password"
|
|
placeholder="请输入新密码"
|
|
placeholder="请输入新密码"
|
|
variant="outlined"
|
|
variant="outlined"
|
|
density="compact"
|
|
density="compact"
|
|
@@ -40,7 +40,7 @@
|
|
@click:append-inner="passwordType = !passwordType"
|
|
@click:append-inner="passwordType = !passwordType"
|
|
></v-text-field>
|
|
></v-text-field>
|
|
<v-text-field
|
|
<v-text-field
|
|
- v-model="query.checkPassword"
|
|
|
|
|
|
+ v-model.trim="query.checkPassword"
|
|
placeholder="请再次输入新密码"
|
|
placeholder="请再次输入新密码"
|
|
variant="outlined"
|
|
variant="outlined"
|
|
density="compact"
|
|
density="compact"
|