fix(region-select): 区域选择器兼容问题修复

This commit is contained in:
woody 2025-08-01 13:53:30 +08:00
parent 877406e8ce
commit bb1bd4e417
1 changed files with 7 additions and 5 deletions

View File

@ -170,7 +170,7 @@ export default {
max-width: 680rpx; max-width: 680rpx;
background-color: white; background-color: white;
border-radius: 24rpx; border-radius: 24rpx;
animation: scale-up 0.3s ease-out; /* animation: scale-up 0.3s ease-out; */
max-height: 80vh; max-height: 80vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -207,14 +207,16 @@ export default {
.picker-view { .picker-view {
width: 100%; width: 100%;
height: 500rpx; height: 600rpx;
/* margin-top: 20rpx; */
} }
.picker-item { .picker-item {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 30rpx; font-size: 24rpx;
line-height: 100rpx;
color: #666; color: #666;
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@ -257,7 +259,7 @@ export default {
box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.25); box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.25);
} }
@keyframes scale-up { /* @keyframes scale-up {
from { from {
transform: scale(0.8); transform: scale(0.8);
opacity: 0; opacity: 0;
@ -266,5 +268,5 @@ export default {
transform: scale(1); transform: scale(1);
opacity: 1; opacity: 1;
} }
} } */
</style> </style>