update 芯片OEE和转化效率
This commit is contained in:
parent
e066a7c4c7
commit
bc3a68a9a7
257
src/views/copilot/components/BarChartBase.vue
Normal file
257
src/views/copilot/components/BarChartBase.vue
Normal file
@ -0,0 +1,257 @@
|
|||||||
|
<!--
|
||||||
|
filename: BarChartBase.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<chart-container class="bar-chart-base">
|
||||||
|
<div class="legend">
|
||||||
|
<span
|
||||||
|
v-for="item in legend"
|
||||||
|
:key="item.label"
|
||||||
|
class="legend-item"
|
||||||
|
:style="{ fontSize: isFullscreen ? '0.58vw' : '0.54vw' }"
|
||||||
|
>{{ item.label }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
ref="chart"
|
||||||
|
style="max-width: 50vw"
|
||||||
|
:style="{ height: vHeight + 'vh' }"
|
||||||
|
></div>
|
||||||
|
</chart-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import screenfull from "screenfull";
|
||||||
|
import ChartContainer from "./ChartContainer.vue";
|
||||||
|
import chartMixin from "@/mixins/chart.js";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "BarChartBase",
|
||||||
|
components: {
|
||||||
|
ChartContainer,
|
||||||
|
},
|
||||||
|
mixins: [chartMixin],
|
||||||
|
props: {
|
||||||
|
vHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 34,
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
series: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
in: {
|
||||||
|
type: String,
|
||||||
|
default: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
actualOptions: null,
|
||||||
|
options: {
|
||||||
|
grid: {
|
||||||
|
left: "5%",
|
||||||
|
right: "4%",
|
||||||
|
bottom: "3%",
|
||||||
|
top: "15%",
|
||||||
|
containLabel: true,
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
xAxis: {
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisLine: {
|
||||||
|
lineStyle: {
|
||||||
|
color: "#4561AE",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
color: "#fff",
|
||||||
|
fontSize: 12,
|
||||||
|
},
|
||||||
|
data: this.xAxis,
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
name: "单位/片",
|
||||||
|
nameTextStyle: {
|
||||||
|
color: "#fff",
|
||||||
|
fontSize: 12,
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
color: "#fff",
|
||||||
|
fontSize: 12,
|
||||||
|
},
|
||||||
|
axisLine: {
|
||||||
|
show: true,
|
||||||
|
lineStyle: {
|
||||||
|
color: "#4561AE",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
splitLine: {
|
||||||
|
lineStyle: {
|
||||||
|
color: "#4561AE",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "", // this.series[0].name,
|
||||||
|
type: "bar",
|
||||||
|
barWidth: 12,
|
||||||
|
itemStyle: {
|
||||||
|
borderRadius: [10, 10, 0, 0],
|
||||||
|
color: {
|
||||||
|
type: "linear",
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
x2: 0,
|
||||||
|
y2: 1,
|
||||||
|
colorStops: [
|
||||||
|
{
|
||||||
|
offset: 0,
|
||||||
|
color: "#12f7f1", // 0% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 0.35,
|
||||||
|
color: "#12f7f177", // 100% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 0.75,
|
||||||
|
color: "#12f7f133", // 100% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 1,
|
||||||
|
color: "transparent", // 100% 处的颜色
|
||||||
|
},
|
||||||
|
],
|
||||||
|
global: false, // 缺省为 false
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: [], // this.series[0].data,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "", // this.series[1].name,
|
||||||
|
type: "bar",
|
||||||
|
barWidth: 12,
|
||||||
|
// tooltip: {
|
||||||
|
// valueFormatter: function (value) {
|
||||||
|
// return value + " ml";
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
itemStyle: {
|
||||||
|
borderRadius: [10, 10, 0, 0],
|
||||||
|
color: {
|
||||||
|
type: "linear",
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
x2: 0,
|
||||||
|
y2: 1,
|
||||||
|
colorStops: [
|
||||||
|
{
|
||||||
|
offset: 0,
|
||||||
|
color: "#57abf8", // 0% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 1,
|
||||||
|
color: "#364BFE66", // 100% 处的颜色
|
||||||
|
},
|
||||||
|
],
|
||||||
|
global: false, // 缺省为 false
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: [], // this.series[1].data,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
/** 全屏状态切换时,对柱子粗细和字体大小进行相应调整 */
|
||||||
|
isFullscreen(val) {
|
||||||
|
this.actualOptions.series.map((item) => {
|
||||||
|
item.barWidth = val ? 18 : 12;
|
||||||
|
});
|
||||||
|
this.actualOptions.xAxis.axisLabel.fontSize = val ? 18 : 12;
|
||||||
|
this.actualOptions.yAxis.axisLabel.fontSize = val ? 18 : 12;
|
||||||
|
this.actualOptions.yAxis.nameTextStyle.fontSize = val ? 18 : 12;
|
||||||
|
this.initOptions(this.actualOptions);
|
||||||
|
},
|
||||||
|
series(val) {
|
||||||
|
if (!val) {
|
||||||
|
this.initOptions(this.options);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const actualOptions = JSON.parse(JSON.stringify(this.options));
|
||||||
|
actualOptions.series[0].data = val[0].data;
|
||||||
|
actualOptions.series[0].name = val[0].name;
|
||||||
|
actualOptions.series[1].data = val?.[1]?.data || [];
|
||||||
|
actualOptions.series[1].name = val?.[1]?.name || "";
|
||||||
|
this.actualOptions = actualOptions;
|
||||||
|
this.initOptions(actualOptions);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.actualOptions = this.options;
|
||||||
|
this.initOptions(this.options);
|
||||||
|
|
||||||
|
if (screenfull.isEnabled) {
|
||||||
|
screenfull.on("change", () => {
|
||||||
|
this.isFullscreen = screenfull.isFullscreen;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.bar-chart-base {
|
||||||
|
// position: relative;
|
||||||
|
|
||||||
|
.legend {
|
||||||
|
position: absolute;
|
||||||
|
top: 5.2vh;
|
||||||
|
right: 1vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-item {
|
||||||
|
position: relative;
|
||||||
|
// font-size: 12px;
|
||||||
|
margin-right: 0.67vw;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
width: 0.531vw;
|
||||||
|
height: 0.531vw;
|
||||||
|
background-color: #ccc;
|
||||||
|
border-radius: 2px;
|
||||||
|
margin-right: 0.22vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-item:nth-child(1):before {
|
||||||
|
background-color: #12f7f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-item:nth-child(2):before {
|
||||||
|
background-color: #58adfa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -5,21 +5,106 @@
|
|||||||
description: 芯片OEE
|
description: 芯片OEE
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template></template>
|
<template>
|
||||||
|
<BarChartBase
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
in="chipOEE"
|
||||||
|
class="chip-oee"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import BarChartBase from "@/views/copilot/components/BarChartBase.vue";
|
||||||
export default {
|
export default {
|
||||||
name: "ChipOEE",
|
name: "ChipOEE",
|
||||||
components: {},
|
components: { BarChartBase },
|
||||||
props: {},
|
props: {
|
||||||
data() {
|
period: {
|
||||||
return {}
|
type: String,
|
||||||
|
default: "日",
|
||||||
},
|
},
|
||||||
computed: {},
|
},
|
||||||
methods: {},
|
data() {
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
legend() {
|
||||||
|
switch (this.period) {
|
||||||
|
case "日":
|
||||||
|
return [{ label: "昨日", color: "#12f7f1" }];
|
||||||
|
case "周":
|
||||||
|
return [{ label: "本周", color: "#12f7f1" }];
|
||||||
|
case "月": {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
const month = new Date().getMonth() + 1;
|
||||||
|
return [
|
||||||
|
{ label: `${year - 1}年${month}月`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年${month}月`, color: "#58adfa" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
case "年": {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
return [
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return [
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
series() {
|
||||||
|
const { ftoInvest } = this.$store.getters.copilot.yield;
|
||||||
|
let dataList = null;
|
||||||
|
|
||||||
|
switch (this.period) {
|
||||||
|
case "日":
|
||||||
|
case "周":
|
||||||
|
dataList = ftoInvest?.current;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
dataList = [];
|
||||||
|
dataList[0] = ftoInvest?.pervious;
|
||||||
|
dataList[1] = ftoInvest?.current;
|
||||||
|
}
|
||||||
|
|
||||||
|
return getTemplate(this.period, dataList);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
|
||||||
|
function getTemplate(period, dataList) {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
const month = new Date().getMonth() + 1;
|
||||||
|
return period == "日" || period == "周"
|
||||||
|
? [
|
||||||
|
{
|
||||||
|
name: period == "日" ? "昨日" : "本周",
|
||||||
|
data: dataList ?? [],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
|
||||||
|
data: dataList ? dataList[0] : [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: period == "年" ? `${year}年` : `${year}年${month}月`,
|
||||||
|
data: dataList ? dataList[1] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
|
];
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss"></style>
|
||||||
|
|
||||||
</style>
|
|
||||||
|
@ -5,21 +5,106 @@
|
|||||||
description: 转化效率
|
description: 转化效率
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<template></template>
|
<template>
|
||||||
|
<BarChartBase
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
in="chipOEE"
|
||||||
|
class="chip-oee"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import BarChartBase from "@/views/copilot/components/BarChartBase.vue";
|
||||||
export default {
|
export default {
|
||||||
name: "TransformRate",
|
name: "TransformRate",
|
||||||
components: {},
|
components: { BarChartBase },
|
||||||
props: {},
|
props: {
|
||||||
data() {
|
period: {
|
||||||
return {}
|
type: String,
|
||||||
|
default: "日",
|
||||||
},
|
},
|
||||||
computed: {},
|
},
|
||||||
methods: {},
|
data() {
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
legend() {
|
||||||
|
switch (this.period) {
|
||||||
|
case "日":
|
||||||
|
return [{ label: "昨日", color: "#12f7f1" }];
|
||||||
|
case "周":
|
||||||
|
return [{ label: "本周", color: "#12f7f1" }];
|
||||||
|
case "月": {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
const month = new Date().getMonth() + 1;
|
||||||
|
return [
|
||||||
|
{ label: `${year - 1}年${month}月`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年${month}月`, color: "#58adfa" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
case "年": {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
return [
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return [
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
];
|
||||||
|
}
|
||||||
|
},
|
||||||
|
series() {
|
||||||
|
const { ftoInvest } = this.$store.getters.copilot.yield;
|
||||||
|
let dataList = null;
|
||||||
|
|
||||||
|
switch (this.period) {
|
||||||
|
case "日":
|
||||||
|
case "周":
|
||||||
|
dataList = ftoInvest?.current;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
dataList = [];
|
||||||
|
dataList[0] = ftoInvest?.pervious;
|
||||||
|
dataList[1] = ftoInvest?.current;
|
||||||
|
}
|
||||||
|
|
||||||
|
return getTemplate(this.period, dataList);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
|
||||||
|
function getTemplate(period, dataList) {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
const month = new Date().getMonth() + 1;
|
||||||
|
return period == "日" || period == "周"
|
||||||
|
? [
|
||||||
|
{
|
||||||
|
name: period == "日" ? "昨日" : "本周",
|
||||||
|
data: dataList ?? [],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
|
||||||
|
data: dataList ? dataList[0] : [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: period == "年" ? `${year}年` : `${year}年${month}月`,
|
||||||
|
data: dataList ? dataList[1] : [],
|
||||||
|
// : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
|
||||||
|
},
|
||||||
|
];
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss"></style>
|
||||||
|
|
||||||
</style>
|
|
||||||
|
@ -14,10 +14,10 @@
|
|||||||
<StdRate />
|
<StdRate />
|
||||||
</Container>
|
</Container>
|
||||||
<Container title="芯片OEE" icon="chip">
|
<Container title="芯片OEE" icon="chip">
|
||||||
<ChipOee />
|
<ChipOee :period="period" />
|
||||||
</Container>
|
</Container>
|
||||||
<Container title="转化效率" icon="cube">
|
<Container title="转化效率" icon="cube">
|
||||||
<TransformRate />
|
<TransformRate :period="period" />
|
||||||
</Container>
|
</Container>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import BarChartBase from "./sub/bar/BarChartBase.vue";
|
import BarChartBase from "@/views/copilot/components/BarChartBase.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "FtoInvest",
|
name: "FtoInvest",
|
||||||
|
Loading…
Reference in New Issue
Block a user