2024-04-20 17:26:03 +08:00
|
|
|
<template>
|
2024-04-25 09:09:34 +08:00
|
|
|
<div class="rightAll">
|
|
|
|
|
<!-- <Card title="安全管理"> -->
|
2024-04-20 17:26:03 +08:00
|
|
|
<div id="echartsSafe" style="width: 100%; height: 100%"></div>
|
2024-04-25 09:09:34 +08:00
|
|
|
<!-- </Card> -->
|
2024-04-20 17:26:03 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import Card from "@/components/card.vue";
|
|
|
|
|
import { onMounted, ref } from "vue";
|
|
|
|
|
import { GlobalStore } from "@/stores";
|
|
|
|
|
const store = GlobalStore();
|
|
|
|
|
import { getProjectInspectRecordCountApi } from "@/api/modules/projectOverview";
|
|
|
|
|
import * as echarts from "echarts";
|
|
|
|
|
const echartsTest = ref();
|
|
|
|
|
let questionTotal = ref(0 as any);
|
|
|
|
|
|
|
|
|
|
let dataList = ref([
|
|
|
|
|
{
|
|
|
|
|
value: 30,
|
|
|
|
|
show: true,
|
|
|
|
|
name: "未整改安全问题",
|
|
|
|
|
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
color: "#EC6266",
|
|
|
|
|
borderWidth: 20
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
value: 70,
|
|
|
|
|
show: true,
|
|
|
|
|
name: "已整改安全问题",
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
color: "#6375C7",
|
|
|
|
|
borderWidth: 20
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]);
|
|
|
|
|
function Pie() {
|
|
|
|
|
let dataArr = [];
|
|
|
|
|
for (var i = 0; i < 150; i++) {
|
|
|
|
|
if (i % 2 === 0) {
|
|
|
|
|
dataArr.push({
|
|
|
|
|
name: (i + 1).toString(),
|
|
|
|
|
value: 10,
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
color: "#7cf4f1",
|
|
|
|
|
borderWidth: 0,
|
|
|
|
|
borderColor: "#7f6546"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
dataArr.push({
|
|
|
|
|
name: (i + 1).toString(),
|
|
|
|
|
value: 10,
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
color: "rgba(0,0,0,0)",
|
|
|
|
|
borderWidth: 0,
|
|
|
|
|
borderColor: "rgba(0,0,0,0)"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return dataArr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function drawEchart() {
|
|
|
|
|
echartsTest.value = echarts.init(document.getElementById("echartsSafe"));
|
|
|
|
|
let option = {
|
|
|
|
|
tooltip: {
|
|
|
|
|
trigger: "item"
|
|
|
|
|
},
|
|
|
|
|
title: {
|
|
|
|
|
text: questionTotal.value,
|
|
|
|
|
subtext: "安全问题数",
|
|
|
|
|
x: "24%",
|
|
|
|
|
y: "center",
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
textStyle: {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
fontSize: 26,
|
|
|
|
|
fontWeight: "normal",
|
|
|
|
|
// align: "center",
|
|
|
|
|
fontFamily: "sadigitalNumber"
|
|
|
|
|
},
|
|
|
|
|
subtextStyle: {
|
|
|
|
|
color: "#ccc",
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
fontWeight: "normal"
|
|
|
|
|
// align: "center"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
legend: {
|
|
|
|
|
selectedMode: false, // 取消图例上的点击事件
|
|
|
|
|
icon: "rect",
|
|
|
|
|
type: "plain",
|
|
|
|
|
orient: "vertical",
|
|
|
|
|
left: "50%",
|
|
|
|
|
top: "40%",
|
|
|
|
|
align: "left",
|
|
|
|
|
itemGap: 30,
|
|
|
|
|
itemWidth: 8, // 设置宽度
|
|
|
|
|
itemHeight: 7, // 设置高度
|
|
|
|
|
symbolKeepAspect: false,
|
|
|
|
|
textStyle: {
|
|
|
|
|
color: "#000",
|
|
|
|
|
rich: {
|
|
|
|
|
name: {
|
|
|
|
|
verticalAlign: "right",
|
|
|
|
|
align: "left",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
color: "#FFFFFF"
|
|
|
|
|
},
|
|
|
|
|
value: {
|
|
|
|
|
align: "left",
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
color: "#FFFFFF"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data: dataList.value.map(item => {
|
|
|
|
|
if (item.show) {
|
|
|
|
|
return item.name;
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
formatter: function (data) {
|
|
|
|
|
if (dataList.value && dataList.value.length) {
|
|
|
|
|
for (var i = 0; i < dataList.value.length; i++) {
|
|
|
|
|
if (data === dataList.value[i].name) {
|
|
|
|
|
var value = dataList.value[i].value;
|
|
|
|
|
var percentage = value + "%";
|
|
|
|
|
return "{name| " + data + "} {gap| }" + "{value|" + value + " " + "}";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
series: [
|
|
|
|
|
// 外侧光线
|
|
|
|
|
{
|
|
|
|
|
name: "",
|
|
|
|
|
type: "gauge",
|
|
|
|
|
center: ["25%", "55%"],
|
|
|
|
|
radius: "90%",
|
|
|
|
|
startAngle: 235,
|
|
|
|
|
endAngle: -50,
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 100,
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: true,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
width: 2,
|
|
|
|
|
color: [
|
|
|
|
|
[
|
|
|
|
|
100 / 100,
|
|
|
|
|
new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: "#526277"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 0.25,
|
|
|
|
|
color: "rgba(4, 14, 54,0.4)"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 0.7,
|
|
|
|
|
color: "rgba(4, 14, 54,0.4)"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: "#526277"
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
],
|
|
|
|
|
[1, "rgba(255,255,255,0)"]
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
splitLine: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
pointer: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
detail: {
|
|
|
|
|
show: 0
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "",
|
|
|
|
|
type: "gauge",
|
|
|
|
|
center: ["25%", "55%"],
|
|
|
|
|
radius: "80%",
|
|
|
|
|
startAngle: 245,
|
|
|
|
|
endAngle: -115,
|
|
|
|
|
min: 0,
|
|
|
|
|
max: 100,
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: true,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
width: 2,
|
|
|
|
|
color: [
|
|
|
|
|
[
|
|
|
|
|
200 / 100,
|
|
|
|
|
new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: "#52bef0"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: "#13356b"
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
],
|
|
|
|
|
[1, "rgba(255,255,255,0)"]
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
splitLine: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
pointer: {
|
|
|
|
|
show: 0
|
|
|
|
|
},
|
|
|
|
|
detail: {
|
|
|
|
|
show: 0
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "",
|
|
|
|
|
type: "pie",
|
|
|
|
|
radius: [65, 75],
|
|
|
|
|
center: ["25%", "55%"],
|
|
|
|
|
hoverAnimation: true,
|
|
|
|
|
itemStyle: {
|
|
|
|
|
borderRadius: 10,
|
|
|
|
|
borderWidth: 10
|
|
|
|
|
},
|
|
|
|
|
label: {
|
|
|
|
|
show: false,
|
|
|
|
|
position: "center"
|
|
|
|
|
},
|
|
|
|
|
emphasis: {
|
|
|
|
|
label: {
|
|
|
|
|
show: false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
labelLine: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
data: dataList.value
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "pie",
|
|
|
|
|
radius: ["57", "60"],
|
|
|
|
|
center: ["25%", "55%"],
|
|
|
|
|
label: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
data: Pie()
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
// let option = {
|
|
|
|
|
// tooltip: {
|
|
|
|
|
// trigger: 'item'
|
|
|
|
|
// },
|
|
|
|
|
// legend: {
|
|
|
|
|
// top: '5%',
|
|
|
|
|
// left: 'center'
|
|
|
|
|
// },
|
|
|
|
|
// series: [
|
|
|
|
|
// {
|
|
|
|
|
// name: 'Access From',
|
|
|
|
|
// type: 'pie',
|
|
|
|
|
// radius: ['40%', '70%'],
|
|
|
|
|
// avoidLabelOverlap: false,
|
|
|
|
|
// label: {
|
|
|
|
|
// show: false,
|
|
|
|
|
// position: 'center'
|
|
|
|
|
// },
|
|
|
|
|
// emphasis: {
|
|
|
|
|
// label: {
|
|
|
|
|
// show: true,
|
|
|
|
|
// fontSize: 40,
|
|
|
|
|
// fontWeight: 'bold'
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// labelLine: {
|
|
|
|
|
// show: false
|
|
|
|
|
// },
|
|
|
|
|
// data: [
|
|
|
|
|
// { value: 1048, name: 'Search Engine' },
|
|
|
|
|
// { value: 735, name: 'Direct' },
|
|
|
|
|
// { value: 580, name: 'Email' },
|
|
|
|
|
// { value: 484, name: 'Union Ads' },
|
|
|
|
|
// { value: 300, name: 'Video Ads' }
|
|
|
|
|
// ]
|
|
|
|
|
// }
|
|
|
|
|
// ]
|
|
|
|
|
// };
|
|
|
|
|
echartsTest.value.setOption(option, true);
|
|
|
|
|
window.addEventListener("resize", () => {
|
|
|
|
|
console.log(echartsTest)
|
|
|
|
|
echartsTest.value.resize();
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//获取安全管理
|
|
|
|
|
// const safeData = ref(null as any);
|
|
|
|
|
const getSafeInfo = async () => {
|
|
|
|
|
const res: any = await getProjectInspectRecordCountApi({ projectSn: store.sn });
|
|
|
|
|
// console.log("获取安全管理", res);
|
|
|
|
|
// safeData.value = res.result;
|
|
|
|
|
dataList.value[0].value = res.result.rectificationNum;
|
|
|
|
|
dataList.value[1].value = res.result.totalNum - res.result.rectificationNum;
|
|
|
|
|
questionTotal.value = res.result.totalNum;
|
|
|
|
|
drawEchart();
|
|
|
|
|
};
|
|
|
|
|
//将方法暴露给父组件
|
|
|
|
|
defineExpose({
|
|
|
|
|
getSafeInfo
|
|
|
|
|
})
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
await getSafeInfo();
|
|
|
|
|
// window.onresize = function(){
|
|
|
|
|
// if(echartsTest.value){
|
|
|
|
|
// echartsTest.value.resize();
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-04-25 09:09:34 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.rightAll {
|
|
|
|
|
background: url("@/assets/images/commandScreen/card-right-all.png") no-repeat;
|
|
|
|
|
// background-color: #fff;
|
|
|
|
|
background-size: 100% 100%;
|
2024-04-20 17:26:03 +08:00
|
|
|
width: 100%;
|
2024-04-25 09:09:34 +08:00
|
|
|
height: 102.1%;
|
2024-04-20 17:26:03 +08:00
|
|
|
}
|
|
|
|
|
::v-deep .h-card .content {
|
|
|
|
|
height: 80%;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .h-card {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
</style>
|