优化登录,修改bug

This commit is contained in:
zhouyanli
2026-07-29 17:47:10 +08:00
parent 9be76c6386
commit a6243cf466
24 changed files with 533 additions and 1012 deletions

View File

@@ -62,7 +62,7 @@
}else {
uni.showToast({
title: `${res.msg}`,
icon: 'error'
icon: 'none'
});
}
})
@@ -86,7 +86,7 @@
}else {
uni.showToast({
title: `${res.msg}`,
icon: 'error'
icon: 'none'
});
}
})
@@ -105,10 +105,7 @@
content: '确认选择此' + checkType.value + '吗?',
success: (res) => {
if (res.confirm) {
uni.showLoading({
title: '选择中...',
mask: true
})
setTimeout(() => {
uni.showToast({
title: '选择成功',
@@ -129,7 +126,6 @@
}
}, 1000)
setTimeout(() => {
uni.hideLoading()
goFreash()
}, 2500)
}
@@ -190,12 +186,7 @@
box-sizing: border-box;
}
.parkingLot-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30rpx;
}
.empty-state {
display: flex;
@@ -212,6 +203,15 @@
margin-top: 20rpx;
margin-bottom: 10rpx;
}
.parkingLot-grid {
/* display: flex;
flex-wrap: wrap;
gap: 30rpx; */
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30rpx
}
.parkingLot-item {
height: 100rpx;
@@ -223,6 +223,9 @@
border-radius: 20rpx;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
transition: all 0.2s ease;
/* padding: 0 24rpx; */
overflow: hidden;
min-width: 0;
}
.parkingLot-item.active {
@@ -238,5 +241,8 @@
font-size: 32rpx;
color: #333;
font-weight: 500;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
</style>