diff --git a/aircraft/server/my/child_pages/login.vue b/aircraft/server/my/child_pages/login.vue
index 832ad91..a330cee 100644
--- a/aircraft/server/my/child_pages/login.vue
+++ b/aircraft/server/my/child_pages/login.vue
@@ -17,9 +17,19 @@
-
- 我已阅读并同意《用户协议》和《隐私政策》
+
+ 我已阅读并同意《用户协议》
+ 和《隐私政策》
+ 登 录
+
+
+ © 2025 爱尚云 版权所有
@@ -84,6 +94,13 @@ export default {
nextUrl: ''
}
},
+ computed:{
+ // 判断是否禁用按钮
+ isDisable(){
+ const { username, password } = this.loginForm;
+ return !(this.isAgreed&&username&&password);
+ }
+ },
onLoad(options) {
this.loading = false;
this.nextUrl = (options.nextUrl != null && options.nextUrl != '/pages/mobile_web/my/child_pages/login') ?
@@ -174,6 +191,10 @@ export default {
finally{
this.dotLoading = false;
}
+ },
+ // 查看协议
+ handleCheckAgreement(agreement){
+
}
},
}
@@ -213,12 +234,21 @@ export default {
text{
margin: 0 6rpx;
color: #2563EB;
+ &:active{
+ opacity: 0.8;
+ }
}
}
&::v-deep .u-checkbox__icon-wrap{
margin-right: 14rpx;
}
}
+ &-copyright{
+ margin: auto auto 56rpx;
+ color: #9CA3AF;
+ font-family: Roboto;
+ font-size: 21rpx;
+ }
}
}
\ No newline at end of file
diff --git a/static/logo.png b/static/logo.png
index 9b041d6..36cf928 100644
Binary files a/static/logo.png and b/static/logo.png differ