Merge remote-tracking branch 'origin/dev' into dev

pull/3/head
fangjiakai 2024-02-28 10:44:30 +08:00
commit 3e43c731bb
8 changed files with 29 additions and 91 deletions

View File

@ -4,7 +4,7 @@
<div class="logo" /> <div class="logo" />
<div class="menu"> <div class="menu">
<ul> <ul>
<li @click="router.push({ path: '/large_screen_data_display' })"> <li @click="fnNavigationBI">
<div class="title">BI</div> <div class="title">BI</div>
</li> </li>
<template v-for="(item, index) in MENU" :key="index"> <template v-for="(item, index) in MENU" :key="index">
@ -79,6 +79,7 @@ defineOptions({
name: "LayoutHeader", name: "LayoutHeader",
}); });
const FILE_URL = import.meta.env.VITE_FILE_URL; const FILE_URL = import.meta.env.VITE_FILE_URL;
let notify;
const router = useRouter(); const router = useRouter();
const menuStore = useMenuStore(); const menuStore = useMenuStore();
const userStore = useUserStore(); const userStore = useUserStore();
@ -156,7 +157,7 @@ const fnSignOut = async () => {
const fnSpecialOperationsWarnAmount = async () => { const fnSpecialOperationsWarnAmount = async () => {
const resData = await getSpecialOperationsWarnAmount(); const resData = await getSpecialOperationsWarnAmount();
if (resData.message) { if (resData.message) {
ElNotification({ notify = ElNotification({
title: "温馨提示", title: "温馨提示",
dangerouslyUseHTMLString: true, dangerouslyUseHTMLString: true,
message: resData.message, message: resData.message,
@ -166,6 +167,10 @@ const fnSpecialOperationsWarnAmount = async () => {
} }
}; };
fnSpecialOperationsWarnAmount(); fnSpecialOperationsWarnAmount();
const fnNavigationBI = () => {
notify && notify.close();
router.push({ path: "/large_screen_data_display" });
};
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -76,44 +76,7 @@ const data = reactive({
}, },
], ],
eleType: 0, eleType: 0,
block2OptionsList: [ block2OptionsList: [],
{
label: "滞留报警",
count: 0,
},
{
label: "越界报警",
count: 235,
},
{
label: "超员报警",
count: 569,
},
{
label: "缺员报警",
count: 569,
},
{
label: "静止报警",
count: 423,
},
{
label: "串岗报警",
count: 789,
},
{
label: "一键告警",
count: 236,
},
{
label: "聚集告警",
count: 214,
},
{
label: "作业告警",
count: 852,
},
],
block3List: [ block3List: [
{ {
name: "赵一诺", name: "赵一诺",

View File

@ -57,10 +57,8 @@ function echarts1(id, legend, echartCount) {
type: "shadow", type: "shadow",
}, },
axisLabel: { axisLabel: {
textStyle: {
color: "#B3CFFF", // x轴文本颜色 color: "#B3CFFF", // x轴文本颜色
fontSize: 10, fontSize: 10,
},
formatter(params) { formatter(params) {
// const res = xWrapText(params, 6); // const res = xWrapText(params, 6);
xWrapText(params, 6); xWrapText(params, 6);
@ -84,11 +82,9 @@ function echarts1(id, legend, echartCount) {
}, },
axisLabel: { axisLabel: {
formatter: "{value}%", formatter: "{value}%",
textStyle: {
color: "#B3CFFF", // x轴文本颜色 color: "#B3CFFF", // x轴文本颜色
fontSize: 12, fontSize: 12,
}, },
},
name: "", name: "",
nameTextStyle: { nameTextStyle: {
color: "#B3CFFF", color: "#B3CFFF",
@ -119,7 +115,7 @@ function echarts1(id, legend, echartCount) {
opacity: 1, opacity: 1,
}, },
]), ]),
barBorderRadius: [0, 0, 0, 0], borderRadius: [0, 0, 0, 0],
}, },
data: echartCount, data: echartCount,
}, },
@ -148,7 +144,7 @@ function echarts1(id, legend, echartCount) {
opacity: 1, opacity: 1,
}, },
]), ]),
barBorderRadius: [0, 0, 0, 0], borderRadius: [0, 0, 0, 0],
}, },
data: echartCount, data: echartCount,
barGap: 0, barGap: 0,

View File

@ -34,10 +34,8 @@ function echarts2(id, month, accumulated, currentMonth) {
}, },
axisLabel: { axisLabel: {
// 坐标轴刻度标签的相关设置 // 坐标轴刻度标签的相关设置
textStyle: {
color: "#d1e6eb", color: "#d1e6eb",
margin: 15, margin: 15,
},
interval: 0, interval: 0,
rotate: 30, rotate: 30,
}, },
@ -64,10 +62,8 @@ function echarts2(id, month, accumulated, currentMonth) {
}, },
axisLabel: { axisLabel: {
margin: 20, margin: 20,
textStyle: {
color: "#d1e6eb", color: "#d1e6eb",
}, },
},
axisTick: { axisTick: {
show: false, show: false,
}, },

View File

@ -52,13 +52,9 @@ function echarts4(id) {
axisLabel: { axisLabel: {
show: true, show: true,
// rotate: -1, // rotate: -1,
textStyle: {
fontSize: 14, fontSize: 14,
// fontFamily: PangMenZhengDao,
color: "#fff", color: "#fff",
}, },
},
axisTick: { axisTick: {
show: false, show: false,
}, },
@ -93,12 +89,9 @@ function echarts4(id) {
}, },
axisLabel: { axisLabel: {
show: true, show: true,
textStyle: {
fontSize: 12, fontSize: 12,
// fontFamily: PangMenZhengDao,
color: "#ffffff", color: "#ffffff",
}, },
},
splitArea: { splitArea: {
areaStyle: { areaStyle: {
color: "rgba(255,255,255,.5)", color: "rgba(255,255,255,.5)",
@ -187,8 +180,9 @@ function echarts4(id) {
return colorList[params.dataIndex]; return colorList[params.dataIndex];
}, },
opacity: 0.7, opacity: 0.7,
// 鼠标移入柱子上 透明度变为 1 },
emphasis: { emphasis: {
itemStyle: {
opacity: 1, opacity: 1,
}, },
}, },

View File

@ -41,11 +41,9 @@ function echarts2(id, data) {
}, },
axisLabel: { axisLabel: {
// 坐标轴刻度标签的相关设置 // 坐标轴刻度标签的相关设置
textStyle: {
color: "#d1e6eb", color: "#d1e6eb",
margin: 15, margin: 15,
}, },
},
axisTick: { axisTick: {
show: false, show: false,
}, },
@ -69,10 +67,8 @@ function echarts2(id, data) {
}, },
axisLabel: { axisLabel: {
margin: 20, margin: 20,
textStyle: {
color: "#d1e6eb", color: "#d1e6eb",
}, },
},
axisTick: { axisTick: {
show: false, show: false,
}, },

View File

@ -32,14 +32,6 @@ const fnInitEcharts = (data) => {
type: "shadow", type: "shadow",
}, },
}, },
legend: {
data: ["各培训类型学习人数"],
top: "15",
textStyle: {
color: "#2aaef2",
},
orient: "horizontal",
},
grid: { grid: {
top: "25%", top: "25%",
right: "3%", right: "3%",

View File

@ -65,9 +65,7 @@ const fnInitEcharts = (data) => {
}, },
axisLabel: { axisLabel: {
interval: 0, interval: 0,
textStyle: {
color: "#fff", color: "#fff",
},
fontSize: 12, fontSize: 12,
margin: 15, margin: 15,
}, },
@ -87,10 +85,8 @@ const fnInitEcharts = (data) => {
}, },
}, },
axisLabel: { axisLabel: {
textStyle: {
color: "#fff", color: "#fff",
}, },
},
splitLine: { splitLine: {
show: false, show: false,
}, },