diff --git a/pages/homepages/main/main.vue b/pages/homepages/main/main.vue
index 342846f..bffab1b 100644
--- a/pages/homepages/main/main.vue
+++ b/pages/homepages/main/main.vue
@@ -1,6 +1,6 @@
-
+ 这是主页面
diff --git a/pages/information/girl_height/girl_height.vue b/pages/information/girl_height/girl_height.vue
index 342846f..6737401 100644
--- a/pages/information/girl_height/girl_height.vue
+++ b/pages/information/girl_height/girl_height.vue
@@ -1,17 +1,178 @@
-
-
-
+
+
+
+
+
+
+ 你当前的身高是?
+
+
+ {{modelChange}}cm
+
+
+
+
+
+
+
+
+ 你当前的身高是{{modelChange}}cm
+
+
+
+
+
+ {{item}}
+
+
+
+
+
+
+
+
+
-
+.button{
+ width: 80%;
+ height: 30px;
+ line-height: 30px;
+ margin:70px auto;
+ z-index: 2;
+
+}
+.picker{
+ width: 80%;
+ height: 300px;
+ margin: auto;
+ text-align: center;
+ z-index: 2;
+}
+.picker-view{
+ width: 100%;
+ height: 300px;
+}
+.pickers{
+ text-align: center;
+}
+
\ No newline at end of file
diff --git a/pages/information/gril_weight/gril_weight.vue b/pages/information/gril_weight/gril_weight.vue
index 342846f..511ab15 100644
--- a/pages/information/gril_weight/gril_weight.vue
+++ b/pages/information/gril_weight/gril_weight.vue
@@ -1,17 +1,179 @@
-
-
-
+
+
+
+
+
+
+
+ 你当前的体重是?
+
+
+ {{modelChange}}kg
+
+
+
+
+
+
+
+
+ 你当前的体重是{{modelChange}}kg
+
+
+
+
+
+ {{item}}
+
+
+
+
+
+
+
+
+
-
diff --git a/pages/information/sex/sex.vue b/pages/information/sex/sex.vue
index 342846f..f12330a 100644
--- a/pages/information/sex/sex.vue
+++ b/pages/information/sex/sex.vue
@@ -1,17 +1,76 @@
-
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/login/account_login/account_login.vue b/pages/login/account_login/account_login.vue
index 5e6e9b3..3ddf825 100644
--- a/pages/login/account_login/account_login.vue
+++ b/pages/login/account_login/account_login.vue
@@ -36,7 +36,7 @@
忘了密码?
-
+
@@ -68,10 +68,10 @@ const captchaButtonText = computed(() => isSendCaptcha.value ? (codeTime.value+"
const isPassagePage = ref(true); //是否是密码登录页的标志;
const passageWordsBottomBorder = computed(() => isPassagePage.value? "0.1rem solid #094ABC":"none"); //密码登录导航的下边框
const captchaWordsBottomBorder = computed(() => isPassagePage.value? "none":"0.1rem solid #094ABC"); //验证码登录导航的下边框
+
const isOpened = ref(true); //密码是否明文显示的标志
const eyesStateIcon = ref("../../../static/login/account_login/login_part/closedeyes.png");
-
//进入验证码登录页面
function toCaptchaEvent(){
isPassagePage.value = false;
@@ -97,7 +97,12 @@ function sendCaptchaEvent(){
},1000)
};
}
-
+function login(){
+ //TODO:登录操作向后端发送验证码的逻辑
+ uni.navigateTo({
+ url: '/pages/homepages/main/main'//登录成功后跳转的页面
+ })
+}
//进入密码登录页面
function toPassageEvent(){
isPassagePage.value = true;
diff --git a/pages/login/register/register.vue b/pages/login/register/register.vue
index 5188f54..723c2de 100644
--- a/pages/login/register/register.vue
+++ b/pages/login/register/register.vue
@@ -1,17 +1,260 @@
-
- 这是注册页面
+
+
+
+
+
+
+ Hi,欢迎加入
+
+ Fit Journey
+
+
-
diff --git a/static/Group.png b/static/Group.png
new file mode 100644
index 0000000..ca19a0f
Binary files /dev/null and b/static/Group.png differ
diff --git a/static/Group1.png b/static/Group1.png
new file mode 100644
index 0000000..35eb6c1
Binary files /dev/null and b/static/Group1.png differ
diff --git a/static/information/sex/css/sex.css b/static/information/sex/css/sex.css
new file mode 100644
index 0000000..8bface2
--- /dev/null
+++ b/static/information/sex/css/sex.css
@@ -0,0 +1,48 @@
+
+.background {
+ background-image: url("/static/information/sex/pictures/background.png");
+ background-size: cover;
+ background-position: center;
+ height: 100vh;
+ display: flex;
+ flex-direction: column; /* 纵向排列 */
+ align-items: center; /* 水平居中 */
+ justify-content: flex-end; /* 使内容向底部对齐 */
+ position: relative; /* 为绝对定位子元素提供相对定位的上下文 */
+}
+
+.boy_image {
+ position: absolute; /* 绝对定位 */
+ width: 30%;
+ height: 16%;
+ bottom: 33%; /* 距离底部 20% 的位置 */
+ left: 10%; /* 水平居中 */
+}
+
+.girl_image {
+ position: absolute; /* 绝对定位 */
+ width: 30%;
+ height: 16%;
+ bottom: 33%; /* 距离底部 20% 的位置 */
+ right: 10%; /* 水平居中 */
+}
+
+.button {
+ position: absolute; /* 绝对定位 */
+ width: 90%;
+ height: 12%;
+ bottom: 2%; /* 距离底部 20% 的位置 */
+ left: 50%; /* 水平居中 */
+ transform: translateX(-50%); /* 通过 translateX 使其居中 */
+}
+
+
+.boy_image,
+.girl_image {
+ transition: transform 0.3s ease; /* 设置过渡效果 */
+}
+
+.boy_image:hover,
+.girl_image:hover {
+ transform: scale(1.1); /* 鼠标悬浮时放大 */
+}
\ No newline at end of file
diff --git a/static/information/sex/pictures/background.png b/static/information/sex/pictures/background.png
new file mode 100644
index 0000000..3d9bf34
Binary files /dev/null and b/static/information/sex/pictures/background.png differ
diff --git a/static/information/sex/pictures/boy.png b/static/information/sex/pictures/boy.png
new file mode 100644
index 0000000..6c673a5
Binary files /dev/null and b/static/information/sex/pictures/boy.png differ
diff --git a/static/information/sex/pictures/button.png b/static/information/sex/pictures/button.png
new file mode 100644
index 0000000..72d3cb0
Binary files /dev/null and b/static/information/sex/pictures/button.png differ
diff --git a/static/information/sex/pictures/girl.png b/static/information/sex/pictures/girl.png
new file mode 100644
index 0000000..b38e310
Binary files /dev/null and b/static/information/sex/pictures/girl.png differ
diff --git a/static/information/sex/pictures/shift_boy.png b/static/information/sex/pictures/shift_boy.png
new file mode 100644
index 0000000..f87ed18
Binary files /dev/null and b/static/information/sex/pictures/shift_boy.png differ
diff --git a/static/information/sex/pictures/shift_girl.png b/static/information/sex/pictures/shift_girl.png
new file mode 100644
index 0000000..91863ca
Binary files /dev/null and b/static/information/sex/pictures/shift_girl.png differ
diff --git a/static/login/register/pictures/background.png b/static/login/register/pictures/background.png
new file mode 100644
index 0000000..19903d8
Binary files /dev/null and b/static/login/register/pictures/background.png differ
diff --git a/static/login/register/pictures/captcha_icon.png b/static/login/register/pictures/captcha_icon.png
new file mode 100644
index 0000000..d0c16f3
Binary files /dev/null and b/static/login/register/pictures/captcha_icon.png differ
diff --git a/static/login/register/pictures/closedeyes.png b/static/login/register/pictures/closedeyes.png
new file mode 100644
index 0000000..73ca339
Binary files /dev/null and b/static/login/register/pictures/closedeyes.png differ
diff --git a/static/login/register/pictures/lock_icon.png b/static/login/register/pictures/lock_icon.png
new file mode 100644
index 0000000..5999bc3
Binary files /dev/null and b/static/login/register/pictures/lock_icon.png differ
diff --git a/static/login/register/pictures/openedeyes.png b/static/login/register/pictures/openedeyes.png
new file mode 100644
index 0000000..6582f62
Binary files /dev/null and b/static/login/register/pictures/openedeyes.png differ
diff --git a/static/login/register/pictures/phone_icon.png b/static/login/register/pictures/phone_icon.png
new file mode 100644
index 0000000..8a6a7ce
Binary files /dev/null and b/static/login/register/pictures/phone_icon.png differ
diff --git a/static/login/register/pictures/return_icon.png b/static/login/register/pictures/return_icon.png
new file mode 100644
index 0000000..c3c6044
Binary files /dev/null and b/static/login/register/pictures/return_icon.png differ
diff --git a/static/pro.png b/static/pro.png
new file mode 100644
index 0000000..f4af3a5
Binary files /dev/null and b/static/pro.png differ
diff --git a/static/pros.png b/static/pros.png
new file mode 100644
index 0000000..37bb170
Binary files /dev/null and b/static/pros.png differ