|
|
|
@ -81,7 +81,7 @@
|
|
|
|
|
<img :src="securityMonitor.url" alt="" />
|
|
|
|
|
<div class="monitor-info-des">
|
|
|
|
|
<span class="info-des-title">{{ securityMonitor.title }}</span>
|
|
|
|
|
<span class="info-des-total">{{ securityMonitor.total }}</span>
|
|
|
|
|
<span class="info-des-total">{{ monitorForm.totalSum }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="monitor-line">|</span>
|
|
|
|
@ -93,7 +93,15 @@
|
|
|
|
|
class="monitor-detail-item"
|
|
|
|
|
>
|
|
|
|
|
<span class="detail-item-title">{{ item.title }}</span>
|
|
|
|
|
<span class="detail-item-num">{{ item.num }}</span>
|
|
|
|
|
<span class="detail-item-num">{{
|
|
|
|
|
item.title == "入侵攻击"
|
|
|
|
|
? monitorForm.rqSum
|
|
|
|
|
: item.title == "恶意扫描"
|
|
|
|
|
? monitorForm.eySum
|
|
|
|
|
: item.title == "僵木蠕病毒"
|
|
|
|
|
? monitorForm.jmrSum
|
|
|
|
|
: 0
|
|
|
|
|
}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -116,7 +124,7 @@
|
|
|
|
|
class="monitor-list"
|
|
|
|
|
>
|
|
|
|
|
<span :data-id="item.id">{{ item.attackTime }}</span>
|
|
|
|
|
<span :data-id="item.id">{{ item.attackedIp }}</span>
|
|
|
|
|
<span :data-id="item.id">{{ item.sourceIp }}</span>
|
|
|
|
|
<span :data-id="item.id">{{
|
|
|
|
|
$filterDict("tc_attack_type", item.attackType)
|
|
|
|
|
}}</span>
|
|
|
|
@ -310,6 +318,8 @@ import {
|
|
|
|
|
saftyscreenSafety,
|
|
|
|
|
listDetection,
|
|
|
|
|
getDetection,
|
|
|
|
|
listTj,
|
|
|
|
|
listSourceTj,
|
|
|
|
|
} from "@/api/zongzhi/st.js";
|
|
|
|
|
import {
|
|
|
|
|
yingTanZhen,
|
|
|
|
@ -426,14 +436,14 @@ export default {
|
|
|
|
|
num: 0,
|
|
|
|
|
className: "item2",
|
|
|
|
|
url: require("@/assets/privateOrder/general/icon-监管单位.png"),
|
|
|
|
|
type:5
|
|
|
|
|
type: 5,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "网站监测",
|
|
|
|
|
num: 0,
|
|
|
|
|
className: "item3",
|
|
|
|
|
url: require("@/assets/privateOrder/general/icon-网站监测.png"),
|
|
|
|
|
type:6
|
|
|
|
|
type: 6,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "IDC单位",
|
|
|
|
@ -459,20 +469,26 @@ export default {
|
|
|
|
|
title: "网络攻击(次)",
|
|
|
|
|
total: 0,
|
|
|
|
|
detail: [
|
|
|
|
|
// {
|
|
|
|
|
// title: '入侵攻击',
|
|
|
|
|
// num: 1455.92
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// title: '恶意扫描',
|
|
|
|
|
// num: 2325.24
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// title: '僵木蠕病毒',
|
|
|
|
|
// num: 796.152
|
|
|
|
|
// }
|
|
|
|
|
{
|
|
|
|
|
title: "入侵攻击",
|
|
|
|
|
// num: 1455.92
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "恶意扫描",
|
|
|
|
|
// num: 2325.24
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "僵木蠕病毒",
|
|
|
|
|
// num: 796.152
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
monitorForm: {
|
|
|
|
|
totalSum: 0,
|
|
|
|
|
rqSum: 0,
|
|
|
|
|
eySum: 0,
|
|
|
|
|
jmrSum: 0,
|
|
|
|
|
},
|
|
|
|
|
tableDataPop: {
|
|
|
|
|
// id: 1,
|
|
|
|
|
// attackTime: '2023-07-30',
|
|
|
|
@ -540,6 +556,10 @@ export default {
|
|
|
|
|
clearInterval(this.time);
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
listSourceTj().then((res) => {
|
|
|
|
|
this.dataSource.top[0].currentNum = res.rows[0].lable1;
|
|
|
|
|
this.dataSource.top[1].currentNum = res.rows[0].lable2;
|
|
|
|
|
});
|
|
|
|
|
this.changeBtn(); // 切换
|
|
|
|
|
this.getSaftyscreenSupervise();
|
|
|
|
|
this.getSaftyscreenSafety();
|
|
|
|
@ -588,24 +608,18 @@ export default {
|
|
|
|
|
dataLY().then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
res.data.forEach((value, index) => {
|
|
|
|
|
this.dataSource.top.forEach((value1, index1) => {
|
|
|
|
|
if (value.type == value1.type) {
|
|
|
|
|
this.dataSource.top[index1].currentNum = value.count
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.dataSource.bottom.forEach((value2, index2) => {
|
|
|
|
|
if (value.type == value2.type) {
|
|
|
|
|
this.dataSource.bottom[index2].num = value.count
|
|
|
|
|
return
|
|
|
|
|
this.dataSource.bottom[index2].num = value.count;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.superviseObject.forEach((value3,index3)=>{
|
|
|
|
|
this.superviseObject.forEach((value3, index3) => {
|
|
|
|
|
if (value.type == value3.type) {
|
|
|
|
|
this.superviseObject[index3].num = value.count
|
|
|
|
|
return
|
|
|
|
|
this.superviseObject[index3].num = value.count;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
@ -661,14 +675,9 @@ export default {
|
|
|
|
|
* 安全监测攻击类型统计
|
|
|
|
|
*/
|
|
|
|
|
getSaftyscreenSafety() {
|
|
|
|
|
saftyscreenSafety().then((res) => {
|
|
|
|
|
this.securityMonitor.detail = res.data.list.map((item, index) => {
|
|
|
|
|
this.securityMonitor.total = this.securityMonitor.total + item.count;
|
|
|
|
|
return {
|
|
|
|
|
title: this.$filterDict("tc_attack_type", item.attackType),
|
|
|
|
|
num: item.count,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
listTj().then((res) => {
|
|
|
|
|
// this.securityMonitor.detail = res.rows
|
|
|
|
|
this.monitorForm = res.rows[0];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/**
|
|
|
|
|