修改巡检图片视频内容

This commit is contained in:
xuli
2025-12-19 16:54:02 +08:00
parent d32152912a
commit 3da8fe4027
24 changed files with 627 additions and 269 deletions

View File

@@ -793,4 +793,25 @@ uni-button[type='primary'][plain] {
display: none !important;
}
/* 日历修改 end */
/* 日历修改 end */
/* 图片loading */
.img-flex .img-con{position: relative;}
.img-flex .img-con .upload-loading{
position: absolute;
left:0;
top:0;
background-color: #EEEEEE;
width:210rpx;
height: 120rpx;
/* line-height: 140rpx; */
padding-top:20rpx;
}
.upload-loading .uni-icons{
display: inline-block;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}