修改登录页样式

This commit is contained in:
zhouyanli
2026-05-05 16:21:56 +08:00
parent d0a0b2dbaf
commit e030bb7cb9
8 changed files with 85 additions and 64 deletions

View File

@@ -180,9 +180,10 @@ const handleConfirm = () => {
line-height: 88rpx;
background-color: #007aff;
color: #fff;
border-radius: 44rpx;
font-size: 32rpx;
border-radius: 8rpx;
font-size: 28rpx;
margin-top: 20rpx;
margin-top: 66rpx;
}
/* 确定按钮禁用状态 */
@@ -192,6 +193,6 @@ const handleConfirm = () => {
}
/* 禁用按钮边框 */
button:after{
border-radius: 50px;
border-radius: 8px;
}
</style>

View File

@@ -147,6 +147,7 @@ const goBack = () => {
font-size: 36rpx;
font-weight: 500;
color: #333;
margin-right: 100rpx;
}
/* 输入框通用样式 */
.input-item {
@@ -205,6 +206,9 @@ const goBack = () => {
background-color: #ccc;
color: #fff;
}
.get-verify-btn::after{
border-radius: 50px;
}
/* 下一步按钮 */
.forget-btn{
width: 100%;
@@ -212,9 +216,10 @@ const goBack = () => {
line-height: 88rpx;
background-color: #007aff;
color: #fff;
border-radius: 44rpx;
font-size: 32rpx;
border-radius: 8rpx;
font-size: 28rpx;
margin-bottom: 40rpx;
margin-top: 66rpx;
}
.forget-btn:disabled{
background-color: #99c8ff;
@@ -222,7 +227,7 @@ const goBack = () => {
}
/* 禁用按钮边框 */
button:after{
border-radius: 50px;
border-radius: 8px;
}

View File

@@ -255,11 +255,11 @@ onUnmounted(() => {
/* 登录标题 */
.login-title {
font-size: 48rpx;
font-size: 52rpx;
font-weight: 600;
color: #333;
text-align: center;
margin-bottom: 80rpx;
margin-bottom: 142rpx;
}
/* 输入框项 */
@@ -324,18 +324,21 @@ onUnmounted(() => {
color: #fff;
border-radius: 50px;
}
.get-verify-btn::after{
border-radius: 50px;
}
/* 协议勾选项 */
.agreement-item {
display: flex;
align-items: center;
margin: 40rpx 0;
margin: 70rpx 0 28rpx 0;
padding-left: 10rpx;
}
/* 协议文本 */
.agreement-text {
font-size: 28rpx;
font-size: 24rpx;
color: #666;
margin-left: 10rpx;
}
@@ -352,8 +355,8 @@ onUnmounted(() => {
line-height: 88rpx;
background-color: #007aff;
color: #fff;
border-radius: 44rpx;
font-size: 32rpx;
border-radius: 8rpx;
font-size: 28rpx;
margin-bottom: 60rpx;
}
@@ -365,7 +368,7 @@ onUnmounted(() => {
}
/* 禁用按钮边框 */
button:after{
border-radius: 50px;
border-radius: 8px;
}
/* 底部链接 */

View File

@@ -79,8 +79,7 @@ const phoneNumber = ref('');
const password = ref('');
const agreeAgreement = ref(false); // 默认勾选
const placeholderStyle = ref('font-size:24rpx')
// 控制点击变色
// const isClicked = ref(false)
// 计算属性:是否可登录(帐号+密码+协议都满足)
const canLogin = computed(() => {
@@ -96,8 +95,6 @@ const toggleAgreement = () => {
// 跳转隐私协议
const goToPrivacy = () => {
// 点击变色
// isClicked.value = true
uni.navigateTo({
url:'/pageSubPack/loginSub/privacy',
})
@@ -188,11 +185,11 @@ const handleLogin = () => {
width: 100%;
}
.login-title {
font-size: 48rpx;
font-size: 52rpx;
font-weight: 600;
color: #333;
text-align: center;
margin-bottom: 80rpx;
margin-bottom: 142rpx;
}
.input-item {
@@ -223,7 +220,7 @@ const handleLogin = () => {
display: flex;
justify-content: space-between;
align-items: center;
margin: 40rpx 0;
margin: 70rpx 0 28rpx 0;
padding: 0 10rpx;
}
@@ -233,7 +230,7 @@ const handleLogin = () => {
}
.agreement-text {
font-size: 28rpx;
font-size: 24rpx;
color: #666;
margin-left: 10rpx;
}
@@ -245,8 +242,8 @@ const handleLogin = () => {
} */
.forget-pwd {
font-size: 28rpx;
color: #007aff;
font-size: 24rpx;
color: #666;
text-decoration: none;
}
@@ -256,8 +253,8 @@ const handleLogin = () => {
line-height: 88rpx;
background-color: #007aff;
color: #fff;
border-radius: 44rpx;
font-size: 32rpx;
border-radius: 8rpx;
font-size: 28rpx;
margin-bottom: 60rpx;
}
@@ -269,7 +266,7 @@ const handleLogin = () => {
}
/* 禁用按钮边框 */
button:after{
border-radius: 50px;
border-radius: 8px;
}
.bottom-link {

View File

@@ -62,9 +62,9 @@
</uni-easyinput>
</view>
<!-- 协议勾选 -->
<view class="agreement-item" @click="toggleAgreement">
<view class="agreement-item" >
<view @click="toggleAgreement">
<uni-icons
type="checkbox-filled"
size="24"
@@ -77,8 +77,10 @@
color="#999"
v-else
></uni-icons>
<text class="agreement-text">我已阅读并同意用户隐私政策</text>
</view>
<text class="agreement-text" @click.stop="goToPrivacy">我已阅读并同意<text class="agreePrivacy">用户隐私政策</text></text>
</view>
<!-- 立即注册按钮 -->
<button
@@ -107,8 +109,8 @@ const verifyCode = ref('');
const account = ref('');
const password = ref('');
const placeholderStyle = ref('font-size:24rpx')
// 协议勾选(默认勾选,和截图一致)
const agreeAgreement = ref(true);
// 协议勾选
const agreeAgreement = ref(false);
// 验证码倒计时
const countDown = ref(0);
let timer = null;
@@ -144,7 +146,12 @@ const goBack = () => {
const toggleAgreement = () => {
agreeAgreement.value = !agreeAgreement.value;
};
// 跳转隐私协议
const goToPrivacy = () => {
uni.navigateTo({
url:'/pageSubPack/loginSub/privacy',
})
}
// 检查表单状态(实时更新按钮状态)
const checkForm = () => {};
@@ -267,11 +274,12 @@ onUnmounted(() => {
font-size: 36rpx;
font-weight: 500;
color: #333;
margin-right: 100rpx;
}
/* 注册标题 */
.register-title {
font-size: 48rpx;
font-size: 40rpx;
font-weight: 600;
color: #333;
margin-bottom: 60rpx;
@@ -327,7 +335,7 @@ onUnmounted(() => {
background-color: #007aff;
color: #fff;
border-radius: 35rpx;
font-size: 28rpx;
font-size: 26rpx;
padding: 0;
margin: 0;
}
@@ -336,20 +344,26 @@ onUnmounted(() => {
background-color: #ccc;
color: #fff;
}
.get-verify-btn::after{
border-radius: 50px;
}
/* 协议勾选项 */
.agreement-item {
display: flex;
align-items: center;
margin: 40rpx 0;
margin: 70rpx 0 28rpx 0;
padding-left: 10rpx;
}
.agreement-text {
font-size: 28rpx;
font-size: 24rpx;
color: #666;
margin-left: 10rpx;
}
.agreePrivacy{
color: #2F77FD;
}
/* 立即注册按钮 */
.register-btn {
@@ -358,12 +372,12 @@ onUnmounted(() => {
line-height: 88rpx;
background-color: #007aff;
color: #fff;
border-radius: 44rpx;
font-size: 32rpx;
border-radius: 8rpx;
font-size: 28rpx;
margin-bottom: 40rpx;
}
button:after{
border-radius: 50px;
border-radius: 8px;
}
.register-btn:disabled {
background-color: #99c8ff;

View File

@@ -233,7 +233,7 @@ onLoad(() =>{
.auth-container {
background: #ffffff;
border-radius: 20rpx;
padding: 30rpx 20rpx;
padding: 40rpx 42rpx;
margin-bottom: 60rpx;
position: relative;
top: -86px;
@@ -242,9 +242,10 @@ onLoad(() =>{
.auth-title {
text-align: center;
font-size: 32rpx;
font-weight: 500;
color: #333333;
padding-bottom: 20rpx;
border-bottom: 1px solid #e5e5e5;
/* border-bottom: 1px solid #e5e5e5; */
margin-bottom: 30rpx;
}
@@ -275,14 +276,14 @@ onLoad(() =>{
/* 门图标 */
.door-icon {
width: 80rpx;
height: 80rpx;
width: 126rpx;
height: 114rpx;
/* background-color: #f5f5f5; */
border-radius: 10rpx;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15rpx;
margin-bottom: 44rpx;
}
.icon-text {
/* font-size: 40rpx; */
@@ -320,7 +321,7 @@ onLoad(() =>{
line-height: 88rpx;
background-color: #2F77FD;
color: #fff;
font-size: 32rpx;
font-size: 28rpx;
border-radius: 20rpx;
border: none;
}

View File

@@ -38,7 +38,7 @@
>
<!-- 访客基本信息 -->
<view class="item-header">
<text class="visitor-name" :class="item.status">来访者{{ item.name }}</text>
<text class="visitor-name" :class="item.status">来访者{{ item.visitorName }}</text>
<text class="status-tag" :class="item.status">{{ item.statusText }}</text>
</view>
@@ -121,8 +121,8 @@ const fetchVisitorList = async () => {
let params = {userId:userId}
try {
const res = await getVisitorList(params)
visitorList.value = mapData(res.data|| [])
// visitorList.value = res.data || []
// visitorList.value = mapData(res.data|| [])
visitorList.value = res.data || []
} catch (e) {
console.error('获取访客列表失败:', e)

View File

@@ -167,7 +167,7 @@ const handleBtnClick = () => {
/* 单个进度点 */
.dot {
width: 16rpx;
height: 16rpx;
height: 8rpx;
border-radius: 8rpx;
background-color: #ddd;
margin: 0 8rpx;
@@ -176,7 +176,7 @@ const handleBtnClick = () => {
/* 激活的进度点 */
.dot.active {
background-color: #007aff;
width: 40rpx;
width: 28rpx;
}
/* 按钮容器 */