同步现场代码

This commit is contained in:
GGJ
2024-06-05 13:28:58 +08:00
parent 709ddc143b
commit 32ef1cc47f
6 changed files with 31 additions and 28 deletions

View File

@@ -3,7 +3,9 @@
<DatePicker ref="datePickerRef" style="display: none" />
<el-page-header :icon="ArrowLeft" @back="emit('back')">
<template #content>
<span class="text-large font-600 mr-3">{{ dropList.lineName }}详情</span>
<span style="font-size: 16px">{{ dropList.lineName }}详情 </span>
<span style="font-weight: 500">最新时间</span>
<span style="color: var(--color-primary-default)">{{ dropList.updateTime }}</span>
</template>
</el-page-header>
<el-row :gutter="20" class="mt10" :style="`height:${rowHeight}`">
@@ -114,11 +116,11 @@
</el-col>
</el-row>
<el-row style="width: 96%" v-for="(item, i) in evaluationData" class="row pb4 pt3">
<el-col :span="14" style="display: flex">
<el-col :span="14" style="display: flex; align-items: center">
<img :src="url[i]" />
<span style="line-height: 20px">{{ item.targetName }}</span>
</el-col>
<el-col :span="10" style="display: flex">
<el-col :span="10" style="display: flex; align-items: center">
<div style="width: 100%">
评估得分
<span
@@ -668,6 +670,7 @@ defineExpose({ open })
.evaluationData {
display: grid;
grid-template-rows: repeat(5, auto);
height: 87%;
.row {
margin: 4px 2% 0;
width: 100%;
@@ -693,7 +696,6 @@ defineExpose({ open })
display: inline-block;
padding: 0 5px;
height: 20px;
line-height: 20px;
border-radius: 4px;
}
.background1 {