一体机登录功能开发

This commit is contained in:
冯辉
2025-11-14 18:10:59 +08:00
parent 9cda4eacb3
commit c798f1bdf2
14 changed files with 1317 additions and 146 deletions

View File

@@ -118,7 +118,7 @@
v-model="formData.jobLocation"
/>
<view class="location-icon-btn" @click="chooseLocation">
<uni-icons type="location" size="20" color="#256BFA"></uni-icons>
<uni-icons type="location" size="20" color="#333"></uni-icons>
</view>
</view>
</view>
@@ -800,25 +800,27 @@ const validateForm = () => {
.location-input {
flex: 1;
padding-right: 80rpx;
padding-right: 100rpx;
}
.location-icon-btn {
position: absolute;
right: -3px;
top: 20%;
transform: translateY(-50%);
width: 80rpx;
height: 80rpx;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
border-radius: 8rpx;
z-index: 99;
position: absolute;
right: 0;
top: 44%;
transform: translateY(-50%);
width: 80rpx;
height: 60rpx;
display: flex;
align-items: center;
justify-content: center;
background: #f0f0f0;
border: none;
border-radius: 12rpx;
transition: all 0.3s ease;
z-index: 99;
&:active {
background: #f0f0f0;
transform: translateY(-50%) scale(0.95);
}
}
}