From 2cffd9c7db5c3191cf172641c800e5a328d6f3af Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期四, 10 七月 2025 17:30:57 +0800 Subject: [PATCH] 2025.7.10 修改动态溯源模块 --- src/views/sourcetrace/component/PollutedExceptionItem.vue | 86 ++++++++++--------------------------------- 1 files changed, 20 insertions(+), 66 deletions(-) diff --git a/src/views/sourcetrace/component/PollutedExceptionItem.vue b/src/views/sourcetrace/component/PollutedExceptionItem.vue index 0aeedff..a6c80f9 100644 --- a/src/views/sourcetrace/component/PollutedExceptionItem.vue +++ b/src/views/sourcetrace/component/PollutedExceptionItem.vue @@ -11,10 +11,12 @@ <template #content> <el-scrollbar class="clue-card"> <el-row justify="space-between" align="bottom"> - <el-text type="warning" size="large"> 鍏稿瀷鍒囩墖 </el-text> + <el-text type="warning" style="font-weight: 600" size="large"> + 婧簮鍒囩墖 + </el-text> <el-link - type="primary" + type="info" :underline="true" @click="showMarksAndPolygon(item)" > @@ -23,30 +25,30 @@ </el-link> </el-row> <div> - <el-text type="primary"> + <el-text type="info"> <el-icon><Timer /></el-icon> {{ '鍒囩墖鏃舵锛�' + - item.pollutedData.startTime + + item.pollutedData._startTime + ' - ' + - item.pollutedData.endTime + item.pollutedData._endTime }} </el-text> </div> <div> - <el-text type="primary"> + <el-text type="info"> <el-icon><MapLocation /></el-icon> {{ '椋庨櫓鍖哄煙锛�' + item.pollutedArea.address }} </el-text> </div> <!-- <div> - <el-text type="primary"> + <el-text type="info"> 婧簮璺濈锛歿{ formatDistanceType(item.pollutedArea.distanceType) }} </el-text> </div> --> <div> - <el-text type="primary"> - <el-icon><BellFilled /></el-icon> + <el-text type="info"> + <el-icon><Bell /></el-icon> 寮傚父绫诲瀷锛歿{ item.pollutedData.exception }} </el-text> </div> @@ -83,7 +85,7 @@ </el-row> <el-row justify="space-between"> <!-- <el-link - type="primary" + type="info" underline @click="showMarksAndPolygon(item)" > @@ -105,7 +107,8 @@ ></RealTimeLineChart> <!-- </div> --> <div class="border-dashed"> - <el-text type="" tag="mark"> + <el-icon color="#ffbc58" size="20"><WarningFilled /></el-icon> + <el-text type="info" tag="b"> {{ item.pollutedSource.conclusion }} </el-text> </div> @@ -113,57 +116,6 @@ :show-marks="item.showMore" :scene-list="item.pollutedSource.sceneList" ></SceneTable> - - <!-- <el-space gap="4"> - <el-tag :type="item.status == 1 ? 'danger' : 'info'">{{ - item._statusStr - }}</el-tag> - <el-text type="default">{{ item.exception }}</el-text> - </el-space> - <el-row gap="4"> - <el-text type="primary">鍙戠敓鏃堕棿锛�</el-text> - <el-text type="primary">{{ - item.startTime + ' 鑷� ' - }}</el-text> - <el-text type="primary">{{ - item.status == 1 ? '褰撳墠' : item.endTime - }}</el-text> - </el-row> - <el-row> - <el-col :span="6"> - <el-statistic title="鍥犲瓙" :value="item.factorName" /> - </el-col> - <el-col :span="6"> - <el-statistic title="鍧囧��" :value="item.avg" /> - </el-col> - <el-col :span="6"> - <el-statistic title="宄板��" :value="item.max" /> - </el-col> - <el-col :span="6"> - <el-statistic title="璋峰��" :value="item.min" /> - </el-col> - </el-row> - <el-row justify="space-between"> - <el-link - type="primary" - @click="item.showMore = !item.showMore" - > - {{ - (item.showMore ? '鏀惰捣婧簮鍦烘櫙' : '鏌ョ湅婧簮鍦烘櫙') + - '锛�' + - item.relatedSceneList.length + - '锛�' - }} - </el-link> - <el-link type="primary" @click="drawSector(item)"> - 鏌ョ湅寮傚父 - </el-link> - </el-row> - <SceneTable - v-show="item.showMore" - :scene-list="item.relatedSceneList" - ></SceneTable> - <el-divider /> --> </el-scrollbar> </template> </BaseCard> @@ -209,7 +161,7 @@ } </script> <style scoped> -:deep(.el-statistic) { +/* :deep(.el-statistic) { --el-statistic-title-color: rgb(215, 215, 215); --el-statistic-content-color: white; } @@ -220,7 +172,7 @@ :deep(.el-link) { --el-link-text-color: #23dad1; -} +} */ .scrollbar { min-width: 300px; @@ -233,13 +185,15 @@ padding: 0 4px; /* margin-right: 2px; */ width: 340px; - height: 35vh; - border-right: 1px solid white; + height: 400px; + /* border-right: 1px solid white; */ border-radius: 2px; } .border-dashed { /* border: 1px dashed white; */ + display: flex; + /* align-items: center; */ border: 1px dashed #ffbc58; padding: 0px 1px; margin-bottom: 4px; -- Gitblit v1.9.3