2025-04-29 18:09:13 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="situation">
|
|
|
|
|
<div class="main">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<img src="@/assets/images/ligner.png" alt="" />
|
|
|
|
|
<div class="w100% flex justify-between items-center">
|
|
|
|
|
<div class="subTitle flex items-center">
|
|
|
|
|
<img src="@/assets/images/jigong.png" alt="" />
|
|
|
|
|
<span>人员情况</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="hint">PERSONNEL SITUATION</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mark"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ligner"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cardList">
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="iconImg">
|
2025-05-06 18:34:01 +08:00
|
|
|
|
<img src="@/assets/images/totalnumber.png" alt="" />
|
2025-04-29 18:09:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
<p>总人数</p>
|
|
|
|
|
<div class="peopleNum"><span>259</span>人</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="iconImg">
|
|
|
|
|
<img src="@/assets/images/attendanceperson.png" alt="" />
|
|
|
|
|
</div>
|
|
|
|
|
<p>出勤人</p>
|
|
|
|
|
<div class="peopleNum"><span>259</span>人</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="iconImg">
|
|
|
|
|
<img src="@/assets/images/Attendancerate.png" alt="" />
|
|
|
|
|
</div>
|
|
|
|
|
<p>出勤率</p>
|
|
|
|
|
<div class="peopleNum"><span>100</span>%</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<img src="@/assets/images/ligner.png" alt="" />
|
|
|
|
|
<div class="flex justify-between w100% items-center">
|
|
|
|
|
<div class="subTitle flex items-center">
|
|
|
|
|
<img src="@/assets/images/Machinery.png" alt="" />
|
|
|
|
|
<span>机械情况</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="hint">MECHANICAL CONDITION</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mark"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ligner"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="machinery" id="machineryMain"></div>
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<img src="@/assets/images/ligner.png" alt="" />
|
|
|
|
|
<div class="flex justify-between w100% items-center">
|
|
|
|
|
<div class="subTitle flex items-center">
|
|
|
|
|
<img src="@/assets/images/order.png" alt="" />
|
|
|
|
|
<span>材料情况</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="hint">MATERIAL STATUS</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mark"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ligner"></div>
|
|
|
|
|
</div>
|
2025-05-06 18:34:01 +08:00
|
|
|
|
<div class="order" id="orderMain"></div>
|
2025-04-29 18:09:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="topleft"></div>
|
|
|
|
|
<div class="bottomright"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import * as echarts from 'echarts';
|
|
|
|
|
|
|
|
|
|
type EChartsOption = echarts.EChartsOption;
|
|
|
|
|
|
|
|
|
|
const initMachinerycharts = () => {
|
2025-05-06 18:34:01 +08:00
|
|
|
|
let chartDom = document.getElementById('machineryMain');
|
|
|
|
|
let myMachineryChart = echarts.init(chartDom);
|
|
|
|
|
let option: EChartsOption;
|
2025-04-29 18:09:13 +08:00
|
|
|
|
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
let dataAxis = ['水泥机', '搅拌机', '拖拉机', '推土机', '推土机', '推土机','推土机', ];
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
let data = [11, 23, 21, 20, 22, 24, 24];
|
|
|
|
|
|
|
|
|
|
option = {
|
|
|
|
|
title: {
|
|
|
|
|
subtext: '单位:台数'
|
|
|
|
|
},
|
|
|
|
|
grid: {
|
|
|
|
|
// 让图表占满容器
|
2025-05-08 18:28:20 +08:00
|
|
|
|
top: '45vh',
|
|
|
|
|
bottom: '50vh'
|
2025-04-29 18:09:13 +08:00
|
|
|
|
},
|
|
|
|
|
xAxis: {
|
|
|
|
|
data: dataAxis,
|
|
|
|
|
axisLabel: {
|
|
|
|
|
// inside: true,
|
|
|
|
|
color: 'rgba(202, 218, 226, 1)'
|
|
|
|
|
},
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
z: 10
|
|
|
|
|
},
|
|
|
|
|
yAxis: {
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
color: '#999'
|
|
|
|
|
},
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 40,
|
|
|
|
|
interval: 10,
|
|
|
|
|
splitLine: {
|
|
|
|
|
show: true,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: 'rgba(108, 128, 151, 0.3)',
|
|
|
|
|
width: 1,
|
|
|
|
|
type: 'dashed'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
dataZoom: [
|
|
|
|
|
{
|
|
|
|
|
show: true,
|
|
|
|
|
type: 'slider',
|
|
|
|
|
xAxisIndex: 0,
|
|
|
|
|
// 滚动条背景颜色
|
2025-05-06 18:34:01 +08:00
|
|
|
|
backgroundColor: 'rgba(8, 14, 15, .3)',
|
2025-04-29 18:09:13 +08:00
|
|
|
|
// 选中区域的背景颜色
|
|
|
|
|
fillerColor: {
|
|
|
|
|
type: 'linear',
|
|
|
|
|
x: 0,
|
|
|
|
|
y: 0,
|
|
|
|
|
x2: 0,
|
|
|
|
|
y2: 1,
|
|
|
|
|
colorStops: [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: 'rgba(67, 226, 203, 1)' // 0% 处的颜色
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: 'rgba(21, 181, 230, 1)' // 100% 处的颜色
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
global: false // 缺省为 false
|
|
|
|
|
},
|
2025-05-06 18:34:01 +08:00
|
|
|
|
showDataShadow: false,
|
2025-04-29 18:09:13 +08:00
|
|
|
|
// 手柄大小
|
|
|
|
|
handleSize: 0,
|
|
|
|
|
showDetail: false, //即拖拽时候是否显示详细数值信息 默认true
|
|
|
|
|
moveHandleSize: 0, //移动手柄的大小
|
|
|
|
|
// 滚动条高度
|
2025-05-06 18:34:01 +08:00
|
|
|
|
height: 12,
|
2025-04-29 18:09:13 +08:00
|
|
|
|
borderRadius: 8,
|
2025-05-06 18:34:01 +08:00
|
|
|
|
borderColor: 'rgba(8, 14, 15, .3)',
|
2025-04-29 18:09:13 +08:00
|
|
|
|
// 滚动条与图表的距离
|
2025-05-06 18:34:01 +08:00
|
|
|
|
bottom: 5,
|
|
|
|
|
handleSize: 5,
|
|
|
|
|
// dataZoom-slider组件离容器下侧的距离
|
|
|
|
|
// bottom: 0,
|
|
|
|
|
// 两侧缩放手柄的 icon 形状
|
|
|
|
|
handleIcon:
|
|
|
|
|
'path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5M36.9,35.8h-1.3z M27.8,35.8 h-1.3H27L27.8,35.8L27.8,35.8z', // 画一个圆形
|
|
|
|
|
handleStyle: {
|
|
|
|
|
borderWidth: 5,
|
|
|
|
|
borderCap: 'round',
|
|
|
|
|
borderRadius: 20, // 设置滑块的圆角大小
|
|
|
|
|
color: 'rgba(27,90,169,1)', // 设置滑块的颜色
|
|
|
|
|
shadowBlur: 3, // 设置滑块阴影的模糊大小
|
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0.6)', // 设置滑块阴影的颜色
|
|
|
|
|
shadowOffsetX: 1, // 设置滑块阴影的水平偏移
|
|
|
|
|
shadowOffsetY: 2 // 设置滑块阴影的垂直偏移
|
|
|
|
|
},
|
2025-04-29 18:09:13 +08:00
|
|
|
|
start: 0,
|
|
|
|
|
// 计算初始结束百分比
|
|
|
|
|
end: (6 / data.length) * 100
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
type: 'bar',
|
|
|
|
|
showBackground: true,
|
|
|
|
|
itemStyle: {
|
|
|
|
|
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{ offset: 0, color: 'rgba(25, 181, 251, 1)' },
|
|
|
|
|
{ offset: 1, color: 'rgba(67, 158, 255, 0)' }
|
|
|
|
|
])
|
|
|
|
|
},
|
2025-05-08 18:28:20 +08:00
|
|
|
|
barWidth: '13vh',
|
2025-04-29 18:09:13 +08:00
|
|
|
|
data: data
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
option && myMachineryChart.setOption(option);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const initOrderChart = () => {
|
2025-05-06 18:34:01 +08:00
|
|
|
|
let chartDom = document.getElementById('orderMain');
|
|
|
|
|
let myMachineryChart = echarts.init(chartDom);
|
|
|
|
|
let option: EChartsOption;
|
|
|
|
|
|
|
|
|
|
// prettier-ignore
|
|
|
|
|
let data = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'];
|
|
|
|
|
|
|
|
|
|
option = {
|
2025-04-29 18:09:13 +08:00
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: 'axis',
|
|
|
|
|
axisPointer: {
|
|
|
|
|
// Use axis to trigger tooltip
|
|
|
|
|
type: 'shadow' // 'shadow' as default; can also be 'line' or 'shadow'
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-05-06 18:34:01 +08:00
|
|
|
|
legend: {
|
|
|
|
|
left: 'right', //位置
|
|
|
|
|
icon: 'roundRect', //形状 类型包括 circle,rect,line,roundRect,triangle,diamond,pin,arrow,none
|
|
|
|
|
itemWidth: 15, // 设置宽度
|
|
|
|
|
itemHeight: 4, // 设置高度
|
|
|
|
|
itemGap: 27, // 设置间距
|
|
|
|
|
top: 10, // 设置圆角
|
|
|
|
|
data: ['入库量', '领用量'],
|
|
|
|
|
textStyle: {
|
|
|
|
|
//文字样式
|
|
|
|
|
color: '#B4CEFF',
|
|
|
|
|
fontSize: '12'
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-04-29 18:09:13 +08:00
|
|
|
|
grid: {
|
|
|
|
|
left: '3%',
|
|
|
|
|
right: '4%',
|
2025-05-06 18:34:01 +08:00
|
|
|
|
bottom: '0',
|
|
|
|
|
containLabel: true,
|
|
|
|
|
width: '90%'
|
2025-04-29 18:09:13 +08:00
|
|
|
|
},
|
|
|
|
|
xAxis: {
|
2025-05-06 18:34:01 +08:00
|
|
|
|
type: 'value',
|
|
|
|
|
show: false
|
2025-04-29 18:09:13 +08:00
|
|
|
|
},
|
|
|
|
|
yAxis: {
|
|
|
|
|
type: 'category',
|
2025-05-06 18:34:01 +08:00
|
|
|
|
data,
|
|
|
|
|
offset: 60,
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
inverse: true,
|
2025-04-29 18:09:13 +08:00
|
|
|
|
axisLabel: {
|
|
|
|
|
formatter: function (value, index) {
|
2025-05-06 18:34:01 +08:00
|
|
|
|
return `{${data[index]}|No.${index + 1}} {value|${value}}`;
|
|
|
|
|
},
|
|
|
|
|
align: 'left',
|
|
|
|
|
color: 'rgba(230, 247, 255, 1)',
|
|
|
|
|
rich: {
|
|
|
|
|
Mon: {
|
|
|
|
|
color: 'rgba(230, 247, 255, 1)',
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
align: 'center',
|
|
|
|
|
width: 31,
|
|
|
|
|
height: 23,
|
|
|
|
|
backgroundColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
|
|
|
|
{ offset: 0, color: 'rgba(255, 208, 59, 1)' },
|
|
|
|
|
{ offset: 1, color: 'rgba(255, 208, 59, 0)' }
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
Tue: {
|
|
|
|
|
color: 'rgba(230, 247, 255, 1)',
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
align: 'left',
|
|
|
|
|
width: 31,
|
|
|
|
|
height: 23,
|
|
|
|
|
backgroundColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
|
|
|
|
{ offset: 0, color: 'rgba(31, 189, 237, 1)' },
|
|
|
|
|
{ offset: 1, color: 'rgba(31, 189, 237, 0)' }
|
|
|
|
|
])
|
|
|
|
|
},
|
|
|
|
|
Wed: {
|
|
|
|
|
color: 'rgba(230, 247, 255, 1)',
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
align: 'left',
|
|
|
|
|
width: 31,
|
|
|
|
|
height: 23,
|
|
|
|
|
backgroundColor: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
|
|
|
|
{ offset: 0, color: 'rgba(67, 226, 203, 1)' },
|
|
|
|
|
{ offset: 1, color: 'rgba(67, 226, 203, 0)' }
|
|
|
|
|
])
|
|
|
|
|
}
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-05-06 18:34:01 +08:00
|
|
|
|
dataZoom: [
|
|
|
|
|
{
|
|
|
|
|
// 设置滚动条的隐藏或显示
|
|
|
|
|
show: true,
|
|
|
|
|
// 设置类型
|
|
|
|
|
type: 'slider',
|
|
|
|
|
// 设置背景颜色
|
|
|
|
|
backgroundColor: 'rgba(8, 14, 15, .3)',
|
|
|
|
|
|
|
|
|
|
// 设置选中范围的填充颜色
|
|
|
|
|
fillerColor: {
|
|
|
|
|
type: 'linear',
|
|
|
|
|
x: 0,
|
|
|
|
|
y: 0,
|
|
|
|
|
x2: 0,
|
|
|
|
|
y2: 1,
|
|
|
|
|
colorStops: [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: 'rgba(67, 226, 203, .5)' // 0% 处的颜色
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: 'rgba(21, 181, 230, .5)' // 100% 处的颜色
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
global: false // 缺省为 false
|
|
|
|
|
},
|
|
|
|
|
borderColor: 'rgba(8, 14, 15, .3)',
|
|
|
|
|
borderCap: 'round',
|
|
|
|
|
// 是否显示detail,即拖拽时候显示详细数值信息
|
|
|
|
|
showDetail: false,
|
|
|
|
|
// handleSize: 0,
|
|
|
|
|
moveHandleSize: 0, //移动手柄的大小
|
|
|
|
|
borderRadius: 20, //滚动条圆角
|
|
|
|
|
// 数据窗口范围的起始数值
|
|
|
|
|
startValue: 0,
|
|
|
|
|
// 数据窗口范围的结束数值(一页显示多少条数据)
|
|
|
|
|
endValue: 4,
|
|
|
|
|
handleSize: 5,
|
|
|
|
|
// dataZoom-slider组件离容器下侧的距离
|
|
|
|
|
// bottom: 0,
|
|
|
|
|
// 两侧缩放手柄的 icon 形状
|
|
|
|
|
handleIcon:
|
|
|
|
|
'path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5M36.9,35.8h-1.3z M27.8,35.8 h-1.3H27L27.8,35.8L27.8,35.8z', // 画一个圆形
|
|
|
|
|
handleStyle: {
|
|
|
|
|
borderWidth: 5,
|
|
|
|
|
borderCap: 'round',
|
|
|
|
|
borderRadius: 20, // 设置滑块的圆角大小
|
|
|
|
|
color: 'rgba(27,90,169,1)', // 设置滑块的颜色
|
|
|
|
|
shadowBlur: 3, // 设置滑块阴影的模糊大小
|
|
|
|
|
shadowColor: 'rgba(0, 0, 0, 0.6)', // 设置滑块阴影的颜色
|
|
|
|
|
shadowOffsetX: 1, // 设置滑块阴影的水平偏移
|
|
|
|
|
shadowOffsetY: 2 // 设置滑块阴影的垂直偏移
|
|
|
|
|
},
|
|
|
|
|
// 控制哪个轴,如果是number表示控制一个轴,
|
|
|
|
|
// 如果是Array表示控制多个轴。此处控制第二根轴
|
|
|
|
|
yAxisIndex: [0, 1],
|
|
|
|
|
// empty:当前数据窗口外的数据,被设置为空。
|
|
|
|
|
// 即不会影响其他轴的数据范围
|
|
|
|
|
filterMode: 'empty',
|
|
|
|
|
// 滚动条高度
|
|
|
|
|
width: 12,
|
|
|
|
|
// 滚动条显示位置
|
|
|
|
|
height: '70%',
|
|
|
|
|
// 距离右边
|
|
|
|
|
right: 5,
|
|
|
|
|
showDataShadow: false, //是否显示数据阴影 默认auto
|
|
|
|
|
// 组件离容器上侧的距离
|
|
|
|
|
// 如果top的值为'top', 'middle', 'bottom',组件会根据相应的位置自动对齐
|
|
|
|
|
top: 'middle'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
// 没有下面这块的话,只能拖动滚动条,
|
|
|
|
|
// 鼠标滚轮在区域内不能控制外部滚动条
|
|
|
|
|
type: 'inside',
|
|
|
|
|
// 控制哪个轴,如果是number表示控制一个轴,
|
|
|
|
|
// 如果是Array表示控制多个轴。此处控制第二根轴
|
|
|
|
|
yAxisIndex: [0, 1],
|
|
|
|
|
width: 20,
|
|
|
|
|
// 滚轮是否触发缩放
|
|
|
|
|
zoomOnMouseWheel: false,
|
|
|
|
|
// 鼠标移动能否触发平移
|
|
|
|
|
moveOnMouseMove: true,
|
|
|
|
|
// 鼠标滚轮能否触发平移
|
|
|
|
|
moveOnMouseWheel: true
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
|
2025-04-29 18:09:13 +08:00
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: '入库量',
|
|
|
|
|
type: 'bar',
|
|
|
|
|
stack: 'total',
|
|
|
|
|
itemStyle: {
|
|
|
|
|
color: 'rgba(67, 226, 203, 1)'
|
|
|
|
|
},
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: 'series'
|
|
|
|
|
},
|
2025-05-06 18:34:01 +08:00
|
|
|
|
data: [320, 302, 301, 334, 345, 356, 367],
|
2025-05-08 18:28:20 +08:00
|
|
|
|
barWidth: 3
|
2025-04-29 18:09:13 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: '领用量',
|
|
|
|
|
type: 'bar',
|
|
|
|
|
stack: 'total',
|
|
|
|
|
itemStyle: {
|
|
|
|
|
color: 'rgba(31, 189, 237, 1)'
|
|
|
|
|
},
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: 'series'
|
|
|
|
|
},
|
2025-05-06 18:34:01 +08:00
|
|
|
|
data: [120, 132, 101, 134, 152, 103, 150],
|
|
|
|
|
showBackground: true,
|
2025-05-08 18:28:20 +08:00
|
|
|
|
barWidth: 3,
|
2025-05-06 18:34:01 +08:00
|
|
|
|
backgroundStyle: {
|
|
|
|
|
color: 'rgba(217, 231, 255, 0.1)'
|
|
|
|
|
}
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
2025-05-06 18:34:01 +08:00
|
|
|
|
option && myMachineryChart.setOption(option);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
initMachinerycharts();
|
2025-05-06 18:34:01 +08:00
|
|
|
|
initOrderChart();
|
2025-04-29 18:09:13 +08:00
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import '../css/gis.scss';
|
|
|
|
|
|
|
|
|
|
#machineryMain {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(421);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
height: vh(222);
|
2025-05-08 18:28:20 +08:00
|
|
|
|
margin-left: vw(14);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
margin-bottom: vh(30);
|
|
|
|
|
}
|
2025-05-06 18:34:01 +08:00
|
|
|
|
|
|
|
|
|
#orderMain {
|
|
|
|
|
width: 100%;
|
2025-05-08 18:28:20 +08:00
|
|
|
|
padding-right: vw(14);
|
2025-05-06 18:34:01 +08:00
|
|
|
|
height: vh(300);
|
|
|
|
|
}
|
2025-04-29 18:09:13 +08:00
|
|
|
|
.title {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
> div > img {
|
|
|
|
|
width: vw(14);
|
|
|
|
|
height: vh(35);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subTitle {
|
|
|
|
|
img {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(18.8);
|
|
|
|
|
height: vh(20);
|
|
|
|
|
margin-right: vw(10);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
text-shadow: 0 0 vw(8) rgba(2, 3, 7, 0.35);
|
|
|
|
|
font-size: vw(20);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
font-weight: 500;
|
2025-05-08 18:28:20 +08:00
|
|
|
|
letter-spacing: 0;
|
2025-04-29 18:09:13 +08:00
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hint {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
font-size: vw(14);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: rgba(204, 204, 204, 0.5);
|
2025-05-08 18:28:20 +08:00
|
|
|
|
margin-right: vw(20);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mark {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(2);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
height: vh(14);
|
|
|
|
|
background: rgba(67, 226, 203);
|
2025-05-08 18:28:20 +08:00
|
|
|
|
margin-right: vw(10);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ligner {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
height: vh(1);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
background: linear-gradient(to right, transparent 0%, #43e2cb 90%);
|
2025-05-08 18:28:20 +08:00
|
|
|
|
margin-left: vw(14);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.situation {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(449);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
height: vh(927);
|
|
|
|
|
background: rgb(1, 26, 33, 0.4);
|
2025-05-08 18:28:20 +08:00
|
|
|
|
backdrop-filter: blur(vw(8));
|
2025-04-29 18:09:13 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: vh(122);
|
2025-05-08 18:28:20 +08:00
|
|
|
|
left: vw(21);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
.main {
|
|
|
|
|
padding-top: vh(30);
|
|
|
|
|
|
|
|
|
|
.cardList {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
padding: 0 vw(20);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
margin-top: vh(20);
|
|
|
|
|
margin-bottom: vh(30);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.card {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
border: vw(1) dashed rgba(67, 226, 203, 0.3);
|
|
|
|
|
width: vw(112);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
height: vh(155);
|
|
|
|
|
padding-top: vh(15);
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
|
|
|
|
|
|
img {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(44);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
margin-bottom: vh(20);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> p {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
font-size: vw(14);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: vh(10);
|
|
|
|
|
font-family: '思源黑体';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.peopleNum {
|
|
|
|
|
font-weight: 400;
|
2025-05-08 18:28:20 +08:00
|
|
|
|
font-size: vw(14);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
|
2025-05-08 18:28:20 +08:00
|
|
|
|
text-shadow: 0 vw(1.24) vw(6.21) rgba(0, 190, 247, 1);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
color: rgba(230, 247, 255, 1);
|
|
|
|
|
|
|
|
|
|
span {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
font-size: vw(24);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
2025-05-08 18:28:20 +08:00
|
|
|
|
padding: vw(2);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
background: linear-gradient(to bottom right, #43e2cb 0%, transparent 50%);
|
|
|
|
|
-webkit-mask:
|
|
|
|
|
linear-gradient(#fff 0 0) content-box,
|
|
|
|
|
linear-gradient(#fff 0 0);
|
|
|
|
|
mask-composite: exclude;
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.topleft {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(7);
|
|
|
|
|
height: vw(7);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
position: absolute;
|
2025-05-08 18:28:20 +08:00
|
|
|
|
top: vh(1);
|
|
|
|
|
left: vw(1);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
background-image: url('@/assets/images/topleft.png');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bottomright {
|
2025-05-08 18:28:20 +08:00
|
|
|
|
width: vw(7);
|
|
|
|
|
height: vw(7);
|
2025-04-29 18:09:13 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
background-image: url('@/assets/images/bottomright.png');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|