安全隐患

Lvtianfang
许宏杰 2 years ago
parent 3e17c5cae7
commit d94ae233bb

@ -4,6 +4,6 @@ ENV = 'development'
# base api
VUE_APP_BASE_API = '/dashboard'
VUE_APP_BASE_API2 = 'http://192.168.0.109:9027'
VUE_APP_BASE_API2 = 'http://39.101.188.84:9027'
BASE_API = 'http://10.10.3.35:9070'

@ -59,3 +59,11 @@ export function departmentList(data) {
params: data,
});
}
// 查询安全隐患统计列表
export function listCounty(query) {
return request({
url: "/zongzhi/county/list",
method: "get",
params: query,
});
}

@ -1,5 +1,5 @@
<template>
<div class="pc">
<!-- <div class="pc"> -->
<div class="container">
<div class="main-container">
<div class="top_nav">
@ -70,7 +70,7 @@
</div>
</el-dialog>
</div>
</div>
<!-- </div> -->
</template>
<script>

@ -6,8 +6,8 @@
<div class="safetyBox">
<div v-for="(item, idx) in safetyList" :key="idx">
<div class="safetyBox_item">
<div class="pone">{{ item.value | commaFilter }}</div>
<div class="ptwo">{{ item.title }}</div>
<div class="pone">{{ item.totalNum | commaFilter }}</div>
<div class="ptwo">{{ item.typeName }}</div>
</div>
</div>
</div>
@ -236,7 +236,7 @@
</template>
<script>
import { safeRisks, tbFinish } from "@/api/wlSafe";
import { safeRisks, tbFinish, listCounty } from "@/api/wlSafe";
import { listDanger, getDanger, listTb, getTb } from "@/api/zongzhi/st.js";
import vueSeamlessScroll from "vue-seamless-scroll";
import ModuleTitle from "../../common/ModuleTitle.vue";
@ -292,36 +292,36 @@ export default {
trouble: { options: ["最新隐患", "通报处置"] },
//
safetyList: [
{
title: "敏感信息泄露漏洞",
value: 0,
type: 1,
},
{
title: "权限许可和访问控制",
type: 2,
value: 0,
},
{
title: "未加密登录请求",
value: 0,
type: 3,
},
{
title: "其他",
type: 6,
value: 0,
},
{
title: "应用程序测试脚本漏洞",
type: 4,
value: 0,
},
{
title: "文件上传漏洞",
type: 5,
value: 0,
},
// {
// title: "",
// value: 0,
// type: 1,
// },
// {
// title: "访",
// type: 2,
// value: 0,
// },
// {
// title: "",
// value: 0,
// type: 3,
// },
// {
// title: "",
// type: 6,
// value: 0,
// },
// {
// title: "",
// type: 4,
// value: 0,
// },
// {
// title: "",
// type: 5,
// value: 0,
// },
],
//
notificationFinishList: [
@ -450,14 +450,15 @@ export default {
* 安全隐患大屏数据
*/
safeListDP() {
safeRisks().then((res) => {
res.data.forEach((value, index) => {
this.safetyList.forEach((value1, index1) => {
if (value.type == value1.type) {
this.safetyList[index1].value = value.count;
}
});
});
listCounty().then((res) => {
this.safetyList = res.rows;
// res.data.forEach((value, index) => {
// this.safetyList.forEach((value1, index1) => {
// if (value.type == value1.type) {
// this.safetyList[index1].value = value.count;
// }
// });
// });
});
},
/**

@ -26,7 +26,7 @@ module.exports = {
* Detail: https://cli.vuejs.org/config/#publicpath
*/
// publicPath: './',
publicPath: "/demo/taicangzongzhi2",
publicPath: "/demo/taicangzongzhi",
outputDir: "dist",
assetsDir: "static",
lintOnSave: process.env.NODE_ENV === "development",

Loading…
Cancel
Save