107 lines
1.9 KiB
Plaintext
107 lines
1.9 KiB
Plaintext
/* pages/workReport/workReport.wxss */
|
|
.report_wrap{
|
|
width: 100%;
|
|
height: 100vh;
|
|
overflow-y: auto;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
background-color: #e8e8e8;
|
|
}
|
|
.search_list{
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
}
|
|
.report_detail{
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
margin-top: 10px;
|
|
font-size: 30rpx;
|
|
color: #5d5d5d;
|
|
}
|
|
.upload_file_wrap{
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
margin-top: 10px;
|
|
font-size: 30rpx;
|
|
color: #5d5d5d;
|
|
}
|
|
.file_title{
|
|
font-size: 34rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.file_btn{
|
|
margin-left: 20px;
|
|
}
|
|
.file_list{
|
|
width: 100%;
|
|
height: 40vh;
|
|
overflow-y: auto;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
border:1px solid silver;
|
|
margin-top: 20px;
|
|
}
|
|
.file_list_content{
|
|
width: 100%;
|
|
height: 36vh;
|
|
overflow-y: auto;
|
|
}
|
|
.list_item{
|
|
color: #5199ff;
|
|
font-size: 30rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin: 5px 0;
|
|
}
|
|
.list_item_left{
|
|
width: 80%;
|
|
word-break: break-all;
|
|
}
|
|
.list_item_right{
|
|
width: 15%;
|
|
margin-left: 5%;
|
|
height: 25px;
|
|
line-height: 25px;
|
|
text-align: center;
|
|
background-color: #f82222;
|
|
color: #fff;
|
|
border-radius: 4px;
|
|
}
|
|
.target_wrap{
|
|
width: 100%;
|
|
height: 40vh;
|
|
overflow-y: auto;
|
|
}
|
|
.file_no_data{
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
color: #8d8d8d;
|
|
}
|
|
.no_data{
|
|
width: 100%;
|
|
height: 40vh;
|
|
overflow-y: auto;
|
|
margin-top: 10px;
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
color: #8d8d8d;
|
|
}
|
|
.submit_btn{
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
text-align: center;
|
|
} |