This commit is contained in:
WangXiaoDong
2023-09-25 10:09:00 +08:00
parent 173f35042d
commit d9868d5cf0
37 changed files with 1618 additions and 1146 deletions

View File

@@ -139,9 +139,9 @@
</div>
<!-- 邮箱登录 end -->
<!-- <div class="login_content_right">
<div class="login_content_right">
<img src="https://www.aida.com.hk/download/aida_V2_images/image/login-right-image.jpg" alt="">
</div> -->
</div>
</div>
<!-- 忘记密码 start -->
@@ -292,7 +292,7 @@ export default defineComponent({
//邮箱登录的下一步
emailNextStepFun() {
if (!isEmail(this.email)) {
message.error("The email format is incorrect");
message.warning("The email format is incorrect");
return;
}
let data = {
@@ -325,7 +325,7 @@ export default defineComponent({
//忘记密码的下一步
forgetPasswordNextStepFun() {
if (!isEmail(this.forgetPasswordEmail)) {
message.error("The email format is incorrect");
message.warning("The email format is incorrect");
return;
}
let data = {
@@ -373,22 +373,22 @@ export default defineComponent({
return;
}else{
if (!this.username || !this.password || !this.email) {
message.error("Please enter your password");
message.warning("Please enter your password");
return;
}
//输入邮箱
if (!this.email) {
message.error("Please enter your email address");
message.warning("Please enter your email address");
return;
}
//判断邮箱格式是否正确
if (!isEmail(this.email)) {
message.error("The email format is incorrect");
message.warning("The email format is incorrect");
return;
}
//判断是否同意隐私政策
if (!this.checked) {
message.error("Agree to all terms, privacy fees and policies");
message.warning("Agree to all terms, privacy fees and policies");
return;
}
let data = {
@@ -519,7 +519,7 @@ export default defineComponent({
left: 50%;
transform: translate(-50%,-50%);
// width: 60rem;
width: 120rem;
width: 150rem;
background: #FFFFFF;
// box-shadow: -0.3rem 2rem 5.9rem 0px rgba(200,200,200,0.3);
border-radius: 1rem;
@@ -530,7 +530,7 @@ export default defineComponent({
align-items: center;
.login_content_left{
width: 45%;
width: 40%;
.login_form_email{
position: absolute;
left: 0;