From 7298d5354963a88643a543b51b90192dc9fc934c Mon Sep 17 00:00:00 2001 From: doum <doum> Date: 星期四, 11 九月 2025 18:43:14 +0800 Subject: [PATCH] 最新版本541200007 --- screen/src/views/TaskEfficiency.vue | 55 +++++++++++++++++++++++++++++++------------------------ 1 files changed, 31 insertions(+), 24 deletions(-) diff --git a/screen/src/views/TaskEfficiency.vue b/screen/src/views/TaskEfficiency.vue index a44debc..939a043 100644 --- a/screen/src/views/TaskEfficiency.vue +++ b/screen/src/views/TaskEfficiency.vue @@ -94,6 +94,11 @@ </div> </div> <div class="center_box"> + + <div class="left_box_top_znz"> + <img src="@/assets/images/ic_compass@2x.png" alt="" /> + </div> + <div class="center_box_one"> <div class="static_wrap"> <div class="item"> @@ -498,47 +503,36 @@ series: [ { name: '鍒嗘椂浣滀笟閲�', - type: 'line', - smooth: true, - showAllSymbol: true, - symbol: 'circle', - symbolSize: 0, - lineStyle: { - color: '#2355f5', - borderColor: '#2355f5' - }, + type: 'bar', + barWidth: 10, label: { show: false, position: 'top', color: '#fff', }, itemStyle: { - color: "#2355f5", - lineStyle: { - width: 0, - type: 'solid' - } - }, - areaStyle: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, - color: '#2355f5' + color: 'rgba(0, 208, 221, 1)' }, { offset: 1, - color: 'rgba(14, 31, 65,0.1)' + color: 'rgba(0, 194, 255, 0.20)' } ], false), - shadowColor: 'rgba(124,248,255, 0)', - shadowBlur: 20 + lineStyle: { + width: 1, + type: 'solid' + }, + barBorderRadius: [30, 30, 0, 0], }, data: dataList3.value.map(i => i.workNum || 0) }, { name: '绱浣滀笟閲�', type: 'bar', - barWidth: 6, + barWidth: 10, label: { show: false, position: 'top', @@ -548,11 +542,11 @@ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ { offset: 0, - color: '#63d6fa' + color: 'rgba(0, 86, 255, 1)' }, { offset: 1, - color: '#32718d' + color: 'rgba(0, 86, 255, 0.20)' } ], false), lineStyle: { @@ -776,7 +770,7 @@ cnplatformWorkData().then(res => { const result = res.data || [] dataList5.value = result.map(i => { - i.statusTemp = i.status == 0 ? '浣滀笟涓�' : i.status == 1 ? '绌洪棽涓�' : '浣滀笟瓒呮椂' + i.statusTemp = i.status == 0 ? '浣滀笟涓�' : i.status == 1 ? '绌洪棽涓�' : i.status == 2 ? '浣滀笟瓒呮椂' : '鍙彿涓�' if (i.workTime) { // i.workTime = dayjs.duration(i.workTime * 1000).format('HH灏忔椂mm鍒�') i.workTime = (i.workTime / 60).toFixed(0) @@ -1122,6 +1116,19 @@ display: flex; flex-direction: column; justify-content: space-between; + position: relative; + + .left_box_top_znz { + width: 68px; + height: 68px; + position: absolute; + right: 30px; + top: 150px; + img { + width: 100%; + height: 100%; + } + } .center_box_one { .static_wrap { -- Gitblit v1.9.3