officialAccount/pages/login/phonebumber.vue

284 lines
5.5 KiB
Vue
Raw Normal View History

2025-05-26 16:48:12 +08:00
<template>
<view class="login-container">
<view class="title">
<image class="title-imge" src="/static/index/nu.png" />
<view class="title-font">
<view class="">您好</view>
2025-05-28 17:36:42 +08:00
<view class="">欢迎使用护理单元~</view>
2025-05-26 16:48:12 +08:00
</view>
</view>
<image class="photo-imge" src="/static/index/bgc.png" />
<image class="old-imge" src="/static/index/old.png" />
<view class="under-container">
<view class="under-container-title">
<view class="under-container-input">
<view class="input-left">+86</view>
2025-05-28 17:36:42 +08:00
<input type="number" style="width: 600rpx;font-size: 33rpx;" maxlength="11" placeholder="请输入绑定手机号"
@input="isRight" />
2025-05-26 16:48:12 +08:00
</view>
</view>
2025-05-28 17:36:42 +08:00
<view class="button-blue" @click="huakuaiOpen = true">
滑块校验
</view>
2025-05-26 16:48:12 +08:00
<view class="button-blue" v-show="canClick" @click="jumpto">
获得验证码
</view>
<view class="button-gray" v-show="!canClick">
获得验证码
</view>
</view>
2025-05-28 17:36:42 +08:00
<view class="bg-mask" v-if="huakuaiOpen" @click="huakuaiOpen=false" >
<huakuai @click.stop />
</view>
2025-05-26 16:48:12 +08:00
</view>
</template>
<script setup>
import {
reactive,
ref
} from 'vue';
2025-05-28 17:36:42 +08:00
import huakuai from "@/compontent/public/huakuai.vue"
const huakuaiOpen = ref(false);
2025-05-26 16:48:12 +08:00
2025-05-28 17:36:42 +08:00
const jumpto = () => {
2025-05-26 16:48:12 +08:00
uni.navigateTo({
2025-05-28 17:36:42 +08:00
url: `/pages/login/code?phonenumber=${phonenumber.value}`
2025-05-26 16:48:12 +08:00
});
}
//检测是不是11位手机号
function is11DigitNumber(value) {
2025-05-28 17:36:42 +08:00
return /^\d{11}$/.test(value.toString());
2025-05-26 16:48:12 +08:00
}
const phonenumber = ref("");
const canClick = ref(false);
2025-05-28 17:36:42 +08:00
const isRight = (res) => {
console.log("????", res.detail.value)
if (is11DigitNumber(res.detail.value)) {
2025-05-26 16:48:12 +08:00
phonenumber.value = res.detail.value
canClick.value = true;
2025-05-28 17:36:42 +08:00
} else {
2025-05-26 16:48:12 +08:00
canClick.value = false;
}
2025-05-28 17:36:42 +08:00
2025-05-26 16:48:12 +08:00
}
</script>
<style lang="scss" scoped>
.login-container {
display: flex;
flex-direction: column;
2025-05-28 17:36:42 +08:00
min-height: 100vh;
2025-05-26 16:48:12 +08:00
width: 100%;
background-color: rgb(239, 241, 252);
position: relative;
.title {
2025-05-28 17:36:42 +08:00
margin-top: 70rpx;
2025-05-26 16:48:12 +08:00
align-items: center;
.title-imge {
2025-05-28 17:36:42 +08:00
width: 100rpx;
height: 105rpx;
margin-left: 100rpx;
2025-05-26 16:48:12 +08:00
}
.title-font {
font-size: 35rpx;
2025-05-28 17:36:42 +08:00
font-weight: 600;
margin-left: 105rpx;
margin-top: 10rpx;
2025-05-26 16:48:12 +08:00
}
}
.photo-imge {
position: absolute;
top: 120rpx;
left: 0;
width: 100%;
height: 1100rpx;
}
.old-imge {
position: absolute;
2025-05-28 17:36:42 +08:00
right: 30rpx;
top: 400rpx;
2025-05-26 16:48:12 +08:00
width: 400rpx;
height: 400rpx;
}
.under-container {
2025-05-28 17:36:42 +08:00
position: fixed;
2025-05-26 16:48:12 +08:00
left: 0;
bottom: 0;
width: 100%;
2025-05-28 17:36:42 +08:00
height: 45vh;
2025-05-26 16:48:12 +08:00
background-color: #fff;
border-top-left-radius: 50rpx;
border-top-right-radius: 50rpx;
box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
.radio-circle {
position: relative;
margin-top: 2rpx;
width: 40rpx;
height: 40rpx;
border-radius: 50%;
border: 2rpx solid #C0C5D9;
background-color: transparent;
}
.radio-circle-target {
position: relative;
margin-top: 2rpx;
width: 40rpx;
height: 40rpx;
border-radius: 50%;
border: 2rpx solid #C0C5D9;
background-color: transparent;
}
.radio-circle-target::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30rpx;
height: 30rpx;
background-color: #00C9FF;
border-radius: 50%;
}
}
}
.under-container-title {
display: flex;
margin-top: 60rpx;
2025-05-28 17:36:42 +08:00
margin-bottom: 60rpx;
2025-05-26 16:48:12 +08:00
align-items: center;
justify-content: center;
font-size: 25rpx;
font-weight: 500;
width: 100%;
2025-05-28 17:36:42 +08:00
2025-05-26 16:48:12 +08:00
.radio-circle-blue {
color: #0083FF;
margin-top: 3rpx;
}
.radio-circle-font {
color: #5A607F;
margin-left: 18rpx;
margin-top: 3rpx;
}
2025-05-28 17:36:42 +08:00
.under-container-input {
2025-05-26 16:48:12 +08:00
width: 80%;
display: flex;
align-items: center;
height: 100rpx;
border-radius: 43rpx;
color: #5A607F;
font-size: 33rpx;
border: 2rpx solid #C0C5D9;
2025-05-28 17:36:42 +08:00
.input-left {
2025-05-26 16:48:12 +08:00
margin: 0 30rpx;
}
}
}
.button-gray {
width: 80%;
display: flex;
justify-content: center;
align-items: center;
height: 100rpx;
border-radius: 43rpx;
2025-05-28 17:36:42 +08:00
background-color: rgb(188, 188, 188);
2025-05-26 16:48:12 +08:00
color: #fff;
font-size: 33rpx;
margin-bottom: 30rpx;
}
.button-white {
width: 80%;
display: flex;
justify-content: center;
align-items: center;
height: 100rpx;
border-radius: 43rpx;
color: #5A607F;
font-size: 33rpx;
margin-bottom: 30rpx;
border: 2rpx solid #C0C5D9;
}
2025-05-28 17:36:42 +08:00
2025-05-26 16:48:12 +08:00
.button-blue {
width: 80%;
display: flex;
justify-content: center;
align-items: center;
height: 100rpx;
border-radius: 43rpx;
background: linear-gradient(to right, #00C9FF, #0076FF);
color: #fff;
font-size: 33rpx;
margin-bottom: 30rpx;
}
2025-05-28 17:36:42 +08:00
2025-05-26 16:48:12 +08:00
.bubble {
transition: opacity 1s ease-out;
position: absolute;
left: 25rpx;
top: -5rpx;
background-color: black;
color: white;
padding: 10rpx;
border-radius: 10rpx;
font-size: 23rpx;
box-shadow: 2rpx 2rpx 5rpx rgba(0, 0, 0, 0.2);
pointer-events: none;
opacity: 1;
/* 初始为可见 */
}
.bubble::after {
transition: opacity 1s ease-out;
content: '';
position: absolute;
left: 50%;
bottom: -8rpx;
border-left: 10rpx solid transparent;
border-right: 10rpx solid transparent;
border-top: 10rpx solid black;
transform: translateX(-50%);
}
/* 隐藏气泡 */
.bubble.hidden {
opacity: 0;
}
2025-05-28 17:36:42 +08:00
.bg-mask {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(5rpx);
z-index: 998;
display: flex;
justify-content: center;
align-items: center;
}
2025-05-26 16:48:12 +08:00
</style>