dataBoard.

This commit is contained in:
姚俊旭 2025-06-13 10:15:38 +08:00
parent e49ac4fd7b
commit a9debd5f2a
16 changed files with 325 additions and 207 deletions

BIN
src/assets/images/alert.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
src/assets/images/first.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B

BIN
src/assets/images/goUp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

BIN
src/assets/images/money.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
src/assets/images/order.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
src/assets/images/qiezi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

BIN
src/assets/images/third.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
src/assets/images/views.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -9,23 +9,23 @@
<div class="title">
<img
class="title-image"
src="../../assets/images/profile.jpg"
src="../../assets/images/money.png"
alt=""
/>
<div>销售总额</div>
<div>销售总额()</div>
</div>
<div class="number">12313</div>
<div class="number">4,541.00</div>
</div>
<div>
<div class="title">
<img
class="title-image"
src="../../assets/images/profile.jpg"
src="../../assets/images/order.png"
alt=""
/>
<div>订单总数</div>
<div>订单总数()</div>
</div>
<div class="number">55</div>
<div class="number">45</div>
</div>
</div>
<div class="app-container-data-left-bottom">
@ -33,28 +33,28 @@
<div class="title">
<img
class="title-image"
src="../../assets/images/profile.jpg"
src="../../assets/images/views.png"
alt=""
/>
<div>浏览量</div>
<div>浏览量()</div>
</div>
<div class="number">13415</div>
<div class="number">61,151</div>
</div>
<div>
<div class="title">
<img
class="title-image"
src="../../assets/images/profile.jpg"
src="../../assets/images/money1.png"
alt=""
/>
<div>成功退款金额</div>
<div>成功退款金额()</div>
</div>
<div class="number">1565465</div>
<div class="number">541.00</div>
</div>
</div>
</div>
<div class="app-container-data-right">
<div ref="chartRef" style="width: 600px; height: 400px"></div>
<div ref="chartRef" style="width: 100%; height: 200px"></div>
</div>
</div>
</div>
@ -131,40 +131,85 @@
<script setup>
import { onMounted, ref } from "vue";
import * as echarts from "echarts";
// DOM
const chartRef = ref(null);
// ECharts
let chartInstance = null;
//
const colorList = ['#3685FE', '#FFD500', '#25BF82'];
// x
const xData = ['1月', '2月', '3月', '4月', '5月', '6月', '7月'];
onMounted(() => {
if (chartRef.value) {
const myChart = echarts.init(chartRef.value);
//
const option = {
backgroundColor: "#fff",
backgroundColor: '#fff',
title: {
text: "渐变折线图",
left: "12%",
top: "13%",
text: '',
textStyle: {
color: "#999",
fontSize: 14,
fontSize: 12,
fontWeight: 400,
},
left: 'center',
top: '5%',
},
legend: {
show: true,
icon: "circle",
top: "13%",
icon: 'circle',
top: '0',
right: '5%',
itemWidth: 6,
itemHeight: 6,
itemGap: 25,
itemGap: 20,
textStyle: {
color: '#556677',
},
},
tooltip: {
trigger: "axis",
trigger: 'axis',
axisPointer: {
label: {
show: true,
backgroundColor: '#fff',
color: '#556677',
borderColor: 'rgba(0,0,0,0)',
shadowColor: 'rgba(0,0,0,0)',
shadowOffsetY: 0,
},
lineStyle: {
width: 0,
},
},
backgroundColor: '#fff',
textStyle: {
color: '#5c6c7c',
},
padding: [10, 10],
extraCssText: 'box-shadow: 1px 0 2px 0 rgba(163,163,163,0.5); text-align: left;',
formatter: function (params) {
let result = params[0].name + '<br>'; // x"1"
params.forEach((param) => {
// param.color
const colorDot = `<span style="
display:inline-block;
margin-right:5px;
border-radius:50%;
width:10px;
height:10px;
background-color:${param.color}">
</span>`;
result += `${colorDot} ${param.seriesName}: ${param.value}${param.seriesName === '茎秆高度' ? 'cm' : param.seriesName === '叶片温度' ? '℃' : 'mm'} <br>`;
});
return result;
},
},
grid: {
top: '20%',
},
xAxis: [
{
type: "category",
data: ["A", "B", "C", "D", "E", "F", "G"],
type: 'category',
data: xData,
axisLine: {
lineStyle: {
color: "#ddd",
color: 'rgba(107,107,107,0.37)',
},
},
axisTick: {
@ -173,27 +218,123 @@ onMounted(() => {
axisLabel: {
interval: 0,
textStyle: {
color: "#c56790",
color: '#999',
},
margin: 15,
},
axisPointer: {
label: {
padding: [11, 5, 7],
backgroundColor: {
type: 'linear',
x: 0,
y: 0,
x2: 0,
y2: 1,
colorStops: [
{
offset: 0,
color: '#fff',
},
{
offset: 0.9,
color: '#fff',
},
{
offset: 0.9,
color: '#33c0cd',
},
{
offset: 1,
color: '#33c0cd',
},
],
global: false,
},
},
},
boundaryGap: false,
},
],
yAxis: [
{
type: "value",
type: 'value',
show: false,
axisTick: {
show: false,
},
axisLine: {
show: true,
lineStyle: {
color: "#ddd",
color: 'rgba(107,107,107,0.37)',
},
},
axisLabel: {
textStyle: {
color: "#c56790",
color: '#999',
},
},
splitLine: {
show: false,
},
},
{
type: 'value',
show: false,
axisTick: {
show: false,
},
axisLine: {
show: true,
lineStyle: {
color: 'rgba(107,107,107,0.37)',
},
},
axisLabel: {
textStyle: {
color: '#999',
},
},
splitLine: {
show: false,
},
},
{
type: 'value',
show: false,
axisTick: {
show: false,
},
axisLine: {
show: true,
lineStyle: {
color: 'rgba(107,107,107,0.37)',
},
},
axisLabel: {
textStyle: {
color: '#999',
},
},
splitLine: {
show: false,
},
},
{
type: 'value',
show: false,
axisTick: {
show: false,
},
axisLine: {
show: true,
lineStyle: {
color: 'rgba(107,107,107,0.37)',
},
},
axisLabel: {
textStyle: {
color: '#999',
},
},
splitLine: {
@ -203,143 +344,120 @@ onMounted(() => {
],
series: [
{
name: "S",
type: "line",
data: [13, 10, 3, 12, 15, 30, 7],
symbolSize: 6,
symbol: "circle",
name: '销售总额',
type: 'line',
data: [514.14, 468.18, 988.35, 1204.84, 954.16, 651.24, ],
symbolSize: 1,
symbol: 'circle',
smooth: true,
yAxisIndex: 0,
showSymbol: false,
lineStyle: {
color: "#fe9a8b",
width: 3,
color: '#25BF82',
shadowColor: 'rgba(158,135,255, 0.3)',
shadowBlur: 10,
shadowOffsetY: 20,
},
itemStyle: {
normal: {
color: "#fe9a8b",
borderColor: "#fe9a8b",
},
},
areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#fe9a8bb3",
},
{
offset: 1,
color: "#fe9a8b03",
},
]),
},
emphasis: {
itemStyle: {
color: {
type: "radial",
x: 0.5,
y: 0.5,
r: 0.5,
colorStops: [
{
offset: 0,
color: "#fe9a8b",
},
{
offset: 0.4,
color: "#fe9a8b",
},
{
offset: 0.5,
color: "#fff",
},
{
offset: 0.7,
color: "#fff",
},
{
offset: 0.8,
color: "#fff",
},
{
offset: 1,
color: "#fff",
},
],
},
borderColor: "#fe9a8b",
borderWidth: 2,
},
color: colorList[0],
borderColor: colorList[0],
},
},
{
name: "M",
type: "line",
data: [5, 12, 11, 4, 25, 16, 1],
symbolSize: 6,
symbol: "circle",
name: '订单总数',
type: 'line',
data: [4, 18, 29, 33, 18, 10, 28],
symbolSize: 1,
symbol: 'circle',
smooth: true,
yAxisIndex: 1,
showSymbol: false,
lineStyle: {
color: "#9E87FF",
width: 5,
color: '#FFD500',
shadowColor: 'rgba(115,221,255, 0.3)',
shadowBlur: 10,
shadowOffsetY: 20,
},
itemStyle: {
normal: {
color: "#9E87FF",
borderColor: "#9E87FF",
color: colorList[2],
borderColor: colorList[2],
},
},
areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#9E87FFb3",
},
{
offset: 1,
color: "#9E87FF03",
name: '浏览量',
type: 'line',
data: [1589, 2648, 5289, 4289, 9654, 6487, 5968],
symbolSize: 1,
symbol: 'circle',
smooth: true,
yAxisIndex: 2,
showSymbol: false,
lineStyle: {
width: 5,
color: '#3685FE',
shadowColor: 'rgba(115,221,255, 0.3)',
shadowBlur: 10,
shadowOffsetY: 20,
},
]),
},
emphasis: {
itemStyle: {
color: {
type: "radial",
x: 0.5,
y: 0.5,
r: 0.5,
colorStops: [
{
offset: 0,
color: "#9E87FF",
color: colorList[2],
borderColor: colorList[2],
},
},
{
offset: 0.4,
color: "#9E87FF",
},
{
offset: 0.5,
color: "#fff",
},
{
offset: 0.7,
color: "#fff",
},
{
offset: 0.8,
color: "#fff",
},
{
offset: 1,
color: "#fff",
},
],
},
borderColor: "#9E87FF",
borderWidth: 2,
name: '成功退款金额',
type: 'line',
data: [62.44, 14.15, 17.48, 25.18, 21.91, 10.02, 2.25],
symbolSize: 1,
symbol: 'circle',
smooth: true,
yAxisIndex: 3,
showSymbol: false,
lineStyle: {
width: 5,
color: '#3685FE',
shadowColor: 'rgba(115,221,255, 0.3)',
shadowBlur: 10,
shadowOffsetY: 20,
},
itemStyle: {
color: colorList[2],
borderColor: colorList[2],
},
},
],
};
myChart.setOption(option);
const initChart = () => {
if (chartRef.value) {
// domecharts
chartInstance = echarts.init(chartRef.value);
//
chartInstance.setOption(option);
// tooltip
// showMaxValueTooltip();
//
window.addEventListener('resize', resizeChart);
}
};
//
onBeforeUnmount(() => {
if (chartInstance) {
window.removeEventListener('resize', resizeChart);
chartInstance.dispose();
chartInstance = null;
}
});
//
const resizeChart = () => {
if (chartInstance) {
chartInstance.resize();
}
};
onMounted(() => {
initChart();
});
</script>
<style lang="scss" scoped>
@ -348,7 +466,7 @@ onMounted(() => {
display: flex;
align-items: center;
margin-right: 50px;
font-size: 20px;
font-size: 18px;
color: #999999;
}
.title-image {
@ -359,7 +477,7 @@ onMounted(() => {
.number {
margin-right: 100px;
margin-top: 20px;
font-size: 25px;
font-size: 18px;
font-weight: bold;
color: #000000;
}