1.添加升级OTA

2.我的添加更换网络入口
3.调试SDK中的删除用户接口
This commit is contained in:
17792275749
2026-03-17 16:24:43 +08:00
parent b157ef5d57
commit 912fafc539
6 changed files with 214 additions and 6 deletions
@@ -7,7 +7,7 @@
.icon {
width: 100%;
margin-bottom: 475rpx;
margin-bottom: 400rpx;
}
.icon>view:first-of-type {
@@ -45,5 +45,58 @@
line-height: 88rpx;
text-align: center;
border-radius: 44rpx;
margin-bottom: 45rpx;
background-color: #1385FA;
}
.ota {
color: #1385FA;
width: 100%;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 86rpx;
text-align: center;
border-radius: 44rpx;
box-sizing: border-box;
border: 1rpx solid #1385FA;
}
/* OTA 升级进度样式 */
.ota-progress-container {
width: 100%;
margin-bottom: 30rpx;
padding: 20rpx;
background-color: #F5F5F5;
border-radius: 12rpx;
box-sizing: border-box;
}
.ota-message {
color: #252535;
font-size: 28rpx;
margin-bottom: 15rpx;
text-align: center;
}
.progress-bar {
width: 100%;
height: 8rpx;
background-color: #E0E0E0;
border-radius: 4rpx;
overflow: hidden;
margin-bottom: 10rpx;
}
.progress-fill {
height: 100%;
background-color: #1385FA;
transition: width 0.3s ease;
}
.progress-text {
color: #1385FA;
font-size: 24rpx;
text-align: center;
font-weight: bold;
}