安全隐患

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

@ -4,6 +4,6 @@ ENV = 'development'
# base api # base api
VUE_APP_BASE_API = '/dashboard' 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' BASE_API = 'http://10.10.3.35:9070'

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

@ -1,76 +1,76 @@
<template> <template>
<div class="pc"> <!-- <div class="pc"> -->
<div class="container"> <div class="container">
<div class="main-container"> <div class="main-container">
<div class="top_nav"> <div class="top_nav">
<div class="top_left"> <div class="top_left">
<router-link <router-link
v-for="item in menus.slice(0, 2)" v-for="item in menus.slice(0, 2)"
:key="item.id" :key="item.id"
class="nav_item left_nav" class="nav_item left_nav"
active-class="selected_nav" active-class="selected_nav"
exact exact
:to="{ path: item.path }" :to="{ path: item.path }"
> >
{{ item.name }} {{ item.name }}
</router-link> </router-link>
</div>
<div class="center_title">太仓市网络综合治理平台</div>
<div class="top_right">
<router-link
v-for="item in menus.slice(2, 4)"
:key="item.id"
class="nav_item right_nav"
active-class="selected_nav"
exact
:to="{ path: item.path }"
>
{{ item.name }}
</router-link>
</div>
<div class="time-wrap">
<div class="icon" />
<span class="date">{{ now.date }}</span>
<span class="time">
{{ now.hour + ":" + now.minute + ":" + now.second }}
</span>
</div>
<div class="year-wrap"></div>
</div> </div>
<router-view /> <div class="center_title">太仓市网络综合治理平台</div>
</div> <div class="top_right">
<div> <router-link
<el-button v-for="item in menus.slice(2, 4)"
v-if="!dialogDetails && $route.name === '网络舆情'" :key="item.id"
type="primary" class="nav_item right_nav"
style=" active-class="selected_nav"
background-color: rgba(255, 255, 255, 0.2); exact
position: absolute; :to="{ path: item.path }"
top: 160px; >
left: 1600px; {{ item.name }}
z-index: 9999; </router-link>
" </div>
@click="dialogDetails = !dialogDetails" <div class="time-wrap">
>切换</el-button <div class="icon" />
> <span class="date">{{ now.date }}</span>
<span class="time">
{{ now.hour + ":" + now.minute + ":" + now.second }}
</span>
</div>
<div class="year-wrap"></div>
</div> </div>
<el-dialog <router-view />
v-if="dialogDetails" </div>
v-el-drag-dialog <div>
class="screen-dialog" <el-button
:visible.sync="dialogDetails" v-if="!dialogDetails && $route.name === '网络舆情'"
width="2530px" type="primary"
top="20px" style="
:modal-append-to-body="true" background-color: rgba(255, 255, 255, 0.2);
center position: absolute;
:modal="false" top: 160px;
left: 1600px;
z-index: 9999;
"
@click="dialogDetails = !dialogDetails"
>切换</el-button
> >
<div class="iframeBox">
<commandControl />
</div>
</el-dialog>
</div> </div>
<el-dialog
v-if="dialogDetails"
v-el-drag-dialog
class="screen-dialog"
:visible.sync="dialogDetails"
width="2530px"
top="20px"
:modal-append-to-body="true"
center
:modal="false"
>
<div class="iframeBox">
<commandControl />
</div>
</el-dialog>
</div> </div>
<!-- </div> -->
</template> </template>
<script> <script>

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

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

Loading…
Cancel
Save