火情线索组件修改

main
zhufu 2026-03-13 13:51:42 +08:00
parent 6991c104f2
commit 1defb26689
1 changed files with 10 additions and 3 deletions

View File

@ -17,7 +17,7 @@
v-for="(item, index) in sectionDatas" v-for="(item, index) in sectionDatas"
@click="handlerFireDetail(item)" @click="handlerFireDetail(item)"
> >
<div class="flex jc-sb"> <div class="flex jc-sb ai-c" style="height: 27px;">
<div class="titleText">{{ item.describe }}</div> <div class="titleText">{{ item.describe }}</div>
<div class="mr-2 desStyle">{{ item.degreeType }}</div> <div class="mr-2 desStyle">{{ item.degreeType }}</div>
</div> </div>
@ -392,6 +392,7 @@ const getFileImage = (type) => {
height: calc(100% - 40px); height: calc(100% - 40px);
margin-left: 4%; margin-left: 4%;
overflow: auto; overflow: auto;
padding-right: 5px;
img { img {
width: 21px; width: 21px;
height: 21px; height: 21px;
@ -400,6 +401,7 @@ const getFileImage = (type) => {
width: 15px; width: 15px;
height: 15px; height: 15px;
margin-left: 3px; margin-left: 3px;
margin-right: 10px;
} }
} }
.sectionLi { .sectionLi {
@ -413,7 +415,9 @@ const getFileImage = (type) => {
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
color: v-bind('titleColor'); color: v-bind('titleColor');
font-size: v-bind('titleSize+"px"'); // font-size: v-bind('titleSize+"px"');
font-size: 14px;
font-weight: 600;
} }
.dataStyle { .dataStyle {
font-size: 14px; font-size: 14px;
@ -437,6 +441,9 @@ const getFileImage = (type) => {
.desStyle { .desStyle {
color: v-bind('desColor'); color: v-bind('desColor');
font-size: v-bind('desSize+"px"'); font-size: v-bind('desSize+"px"');
display: flex;
align-items: center;
height: 100%;
} }
.desImg { .desImg {
margin-right: 10px; margin-right: 10px;
@ -448,7 +455,7 @@ const getFileImage = (type) => {
margin-right: 6px; margin-right: 6px;
} }
.mt-1 { .mt-1 {
margin-top: 8px; // margin-top: 8px;
} }