You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

517 lines
12 KiB
Vue

2 years ago
<template>
<div class="app-container">
<div class="headTitle">箱壳后板成型线可视化平台</div>
<div class="topNum team">{{ team }}</div>
<div class="topNum planNum">{{ planNum }}</div>
<div class="topNum practicalNum">{{ practicalNum }}</div>
<div class="topNum differenceValue">{{ differenceValue }}</div>
<div class="title" v-for="(i,k) in title"
:style="'top:'+(titlePosition[k]&&titlePosition[k].top||0)+'%;left:'+(titlePosition[k]&&titlePosition[k].left||0)+'%'">
{{ i }}
</div>
<div class="scrollTable">
<div style="background-color: #094170">
<div class="scrollTableItem" style="font-weight: bold;">
2 years ago
产品型号
2 years ago
</div>
<div class="scrollTableItem" style="font-weight: bold;">
计划数量
</div>
<div class="scrollTableItem" style="font-weight: bold;">
实际数量
</div>
<div class="scrollTableItem" style="font-weight: bold;">
2 years ago
生产进度
2 years ago
</div>
<div class="scrollTableItem" style="font-weight: bold;">
2 years ago
开始时间
2 years ago
</div>
</div>
<vue-seamless-scroll
:class-option="scrollTableOption"
:data="scrollTableData"
class="case-item"
style="height: 84%;overflow: hidden;"
>
<div
v-for="(item, index) in scrollTableData"
:key="index"
>
<div :style='"background-color:" + ((index % 2 === 0)? "#053460":"#032d57") '>
<div
class="scrollTableItem">
2 years ago
{{ item.value1 }}
2 years ago
</div>
<div
class="scrollTableItem">
{{ item.value2 }}
</div>
<div
class="scrollTableItem">
2 years ago
{{ item.value3 }}
2 years ago
</div>
<div
class="scrollTableItem">
2 years ago
{{ item.value4 }}
2 years ago
</div>
<div
class="scrollTableItem">
2 years ago
{{ item.value5 }}
2 years ago
</div>
</div>
</div>
</vue-seamless-scroll>
</div>
<div class="chart1">
<Chart ref="chart1"></Chart>
</div>
<div class="chart2">
<Chart ref="chart2"></Chart>
</div>
<div class="chart3">
<Chart ref="chart3"></Chart>
</div>
</div>
</template>
<script>
import vueSeamlessScroll from "vue-seamless-scroll";
import Chart from "../../../components/board/Chart";
import * as echarts from 'echarts'
2 years ago
import {getData} from "@/api/board/getData";
2 years ago
export default {
components: {
vueSeamlessScroll,
Chart
},
name: "Liner",
data() {
return {
title: [
'工单计划',
'出入库统计',
'库存统计',
'发泡夹具状态',
],
titlePosition: [
{
top: 19.8,
left: 5.5
},
{
top: 19.8,
left: 53
},
{
top: 60,
left: 5.5
},
{
top: 60,
left: 53
},
],
team: '白班',
planNum: 1000,
practicalNum: 1000,
differenceValue: 1000,
scrollTableOption: {
step: 0.5, // 数值越大速度滚动越快
limitMoveNum: 5, // 开始无缝滚动的数据量 this.dataList.length
hoverStop: true, // 是否开启鼠标悬停stop
direction: 1, // 0向下 1向上 2向左 3向右
openWatch: true, // 开启数据实时监控刷新dom
singleHeight: 0, // 单步运动停止的高度(默认值0是无缝不停止的滚动) direction => 0/1
singleWidth: 0, // 单步运动停止的宽度(默认值0是无缝不停止的滚动) direction => 2/3
waitTime: 0,
},
2 years ago
scrollTableData: [],
2 years ago
}
},
mounted() {
2 years ago
getData().then(e=>{
this.scrollTableData = e.table1
this.$refs.chart1.setData({
tooltip: {
trigger: "axis",
axisPointer: {
// 坐标轴指示器,坐标轴触发有效
type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
},
2 years ago
},
2 years ago
grid: {
left: "0",
right: "4%",
bottom: "0",
top: 20,
containLabel: true,
2 years ago
},
2 years ago
legend: {
data: e.chart1.y.map(val=>val.name),
right: 'center',
top: 0,
textStyle: {
color: "#fff",
2 years ago
},
2 years ago
itemWidth: 12,
itemHeight: 10,
// itemGap: 35
2 years ago
},
2 years ago
xAxis: {
type: "category",
data: e.chart1.x,
axisLine: {
lineStyle: {
color: "white",
},
},
axisLabel: {
// interval: 0,
// rotate: 40,
textStyle: {
fontFamily: "Microsoft YaHei",
},
2 years ago
},
},
2 years ago
yAxis: {
type: "value",
axisLine: {
show: false,
lineStyle: {
color: "white",
},
2 years ago
},
2 years ago
splitLine: {
show: false,
},
axisLabel: {},
2 years ago
},
2 years ago
series: [
{
name: e.chart1.y[0].name,
type: "bar",
barWidth: "30%",
barMaxWidth: 50,
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#39ffff",
},
{
offset: 1,
color: "#f5804d",
},
]),
},
2 years ago
},
2 years ago
data: e.chart1.y[0].data,
2 years ago
},
2 years ago
{
name: e.chart1.y[1].name,
type: "bar",
barWidth: "30%",
barMaxWidth: 50,
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#47cbfd",
},
{
offset: 1,
color: "#3e8aff",
},
]),
},
2 years ago
},
2 years ago
data: e.chart1.y[1].data,
},
],
})
this.$refs.chart2.setData({
tooltip: {
trigger: "axis",
axisPointer: {
// 坐标轴指示器,坐标轴触发有效
type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
2 years ago
},
},
2 years ago
grid: {
left: "0",
right: "4%",
bottom: "0",
top: 20,
containLabel: true,
2 years ago
},
2 years ago
legend: {
data: e.chart2.y.map(val=>val.name),
right: 'center',
top: 0,
textStyle: {
color: "#fff",
2 years ago
},
2 years ago
itemWidth: 12,
itemHeight: 10,
// itemGap: 35
2 years ago
},
2 years ago
xAxis: {
type: "category",
data: e.chart2.x,
axisLine: {
lineStyle: {
color: "white",
},
},
axisLabel: {
// interval: 0,
// rotate: 40,
textStyle: {
fontFamily: "Microsoft YaHei",
},
2 years ago
},
},
2 years ago
yAxis: {
type: "value",
axisLine: {
show: false,
lineStyle: {
color: "white",
},
},
splitLine: {
show: false,
2 years ago
},
2 years ago
axisLabel: {},
2 years ago
},
2 years ago
series: [
{
name: e.chart2.y[0].name,
type: "bar",
barWidth: "30%",
barMaxWidth: 50,
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#0bca98",
},
{
offset: 1,
color: "#16a144",
},
]),
},
},
data: e.chart2.y[0].data,
},
{
name: e.chart2.y[1].name,
type: "bar",
barWidth: "30%",
barMaxWidth: 50,
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#0f8ad7",
},
{
offset: 1,
color: "#0b30d9",
},
]),
},
},
data: e.chart2.y[1].data,
},
],
})
this.$refs.chart3.setData({
tooltip: {
trigger: "axis",
axisPointer: {
// 坐标轴指示器,坐标轴触发有效
type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
},
2 years ago
},
2 years ago
grid: {
left: "0",
right: "4%",
bottom: "0",
top: 20,
containLabel: true,
},
xAxis: {
type: "category",
data: e.chart14.x,
axisLine: {
lineStyle: {
color: "white",
},
},
axisLabel: {
// interval: 0,
// rotate: 40,
textStyle: {
fontFamily: "Microsoft YaHei",
2 years ago
},
},
},
2 years ago
yAxis: {
type: "value",
axisLine: {
show: false,
lineStyle: {
color: "white",
2 years ago
},
},
2 years ago
splitLine: {
show: false,
},
axisLabel: {},
2 years ago
},
2 years ago
series: [
{
name: e.chart14.y.name,
type: "bar",
barWidth: "30%",
barMaxWidth: 50,
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: "#4adfff",
},
{
offset: 1,
color: "#3d7aff",
},
]),
},
},
data: e.chart14.y.data,
},
],
})
2 years ago
})
},
methods: {}
};
</script>
<style scoped>
.app-container {
background-image: url("../../../assets/board/caseShell.jpg");
background-repeat: no-repeat;
background-size: 100% 100%;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.headTitle {
position: absolute;
top: 5%;
left: 50%;
transform: translate(-50%, -100%);
font-size: 1.5vw;
color: #d6eaed;
letter-spacing: 10px;
}
.title {
position: absolute;
transform: translateY(-50%);
color: #dddddd;
font-size: 1vw;
letter-spacing: 2px;
}
.topNum {
position: absolute;
transform: translate(-50%, -50%);
color: #5db9e8;
top: 11.7%;
letter-spacing: 0.5vw;
}
.team {
font-size: 1.5vw;
left: 16.8%;
}
.planNum {
font-size: 1.7vw;
left: 41.2%;
}
.practicalNum {
left: 66.2%;
font-size: 1.7vw;
}
.differenceValue {
font-size: 1.7vw;
left: 90.7%;
}
.scrollTable {
position: absolute;
top: 23%;
left: 4%;
width: 45%;
height: 31%
}
.scrollTableItem {
color: rgb(185, 186, 192);
margin: auto 0px;
padding: 4px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
display: inline-block;
2 years ago
width: 20%;
2 years ago
}
.chart1 {
position: absolute;
top: 23.5%;
left: 51%;
width: 45%;
height: 31%;
}
.chart2 {
position: absolute;
top: 64%;
left: 3.6%;
width: 45.5%;
height: 30.7%;
}
.chart3 {
position: absolute;
top: 64%;
left: 51%;
width: 45.5%;
height: 30.7%;
}
</style>