2024-04-30 16:08:07 +08:00
|
|
|
/* 横向滚动条 */
|
|
|
|
.horizontalScrollView ::-webkit-scrollbar{
|
|
|
|
display: none;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
2024-04-23 11:48:55 +08:00
|
|
|
/* 检索部分 */
|
|
|
|
.columnFlex{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.headerView{
|
|
|
|
padding: 10px 0;
|
|
|
|
flex-basis: 40px;
|
|
|
|
}
|
|
|
|
.searchBox .searchView{
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.searchBox .searchInput{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.searchBox .searchInput .input{
|
|
|
|
border-radius: 20px;
|
|
|
|
padding: 7px 13px 7px 13px;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.searchBox .searchInput .filter{
|
|
|
|
flex-basis: 32px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
.headerViewFixed{
|
|
|
|
position: fixed;
|
|
|
|
left: 14px;
|
|
|
|
top: 0;
|
|
|
|
z-index: 100;
|
|
|
|
width: calc(100% - 28px);
|
|
|
|
}
|
|
|
|
.flexBox{
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.scrollView{
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 加载更多部分 */
|
|
|
|
.noData{
|
|
|
|
margin: 50% auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.noData .imgView .img{
|
|
|
|
width: 180px;
|
|
|
|
height: 138px;
|
|
|
|
}
|
|
|
|
.noData .text{
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.loadBox{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.loadBox .text{
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
.loadBox .icon{
|
|
|
|
animation: spin 0.6s linear infinite;
|
|
|
|
}
|
|
|
|
@keyframes spin {
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2024-04-30 16:08:07 +08:00
|
|
|
|
|
|
|
|
2024-05-07 19:37:20 +08:00
|
|
|
/* picker 下拉选择 */
|
2024-04-30 16:08:07 +08:00
|
|
|
.pickerBom{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2024-05-07 19:37:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 上传组件的自定义优化 */
|
|
|
|
.img_row .file-picker__box-content{
|
|
|
|
border: none !important;
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
|
|
|
border-radius: 4px !important;
|
|
|
|
}
|
|
|
|
.img_row .uni-file-picker__header .file-title{
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 选择日期时间组件自定义优化 */
|
|
|
|
.input_date .uni-date-x--border{
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.input_date .uni-date-x{
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
.input_date .uni-date-x .icon-calendar{
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.input_date .uni-date-x .uni-icons{
|
|
|
|
display: none;
|
2024-04-30 16:08:07 +08:00
|
|
|
}
|