1
0
This commit is contained in:
lucashu 2025-08-20 18:08:43 +08:00
parent 3e1f8ad061
commit 29f21a4fc8
2 changed files with 7 additions and 7 deletions

View File

@ -9,10 +9,10 @@ export const option = {
headerTextColor: '#B4B4B4',
textColor: '#ffffff',
headerBackgroundColor: '#17325F',
itemBackgroundColor: 'transparent',
itemBackgroundColor: '#0F233E',
statusColors: {
'未解决': '#FF4D4F',
'已解决': '#B4B4B4'
'已解决': '#ffffff'
},
headerHeight: 40,
itemHeight: 35,

View File

@ -90,7 +90,7 @@ const getStatusColor = (status: string) => {
display: flex;
align-items: center;
.title-prefix {
width: 35px;
width: 40px;
height: 35px;
background-color: #1e55a7;
clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
@ -107,7 +107,7 @@ const getStatusColor = (status: string) => {
align-items: center;
background-color: #17325f;
padding: 0 20px 0 20px;
margin-left: -8px;
margin-left: -10px;
clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
}
@ -139,12 +139,12 @@ const getStatusColor = (status: string) => {
display: flex;
align-items: center;
padding: 0 10px;
border-bottom: 1px solid rgba(26, 56, 90, 0.8);
margin-bottom: 4px;
&:first-child {
margin-top: 5px;
}
&:last-child {
border-bottom: none;
margin-bottom: 0;
}
.row-item {
flex: 1;
@ -156,4 +156,4 @@ const getStatusColor = (status: string) => {
}
}
}
</style>
</style>