数据来源、安全检查

dongdingding
许宏杰 2 years ago
parent 13aad416a5
commit aaf07187dc

@ -5,10 +5,13 @@ VUE_APP_TITLE = 数据中台系统
ENV = 'development' ENV = 'development'
# 若依接口 # 若依接口
VUE_APP_BASE_API = 'https://vue.ruoyi.vip/prod-api' # VUE_APP_BASE_API = 'https://vue.ruoyi.vip/prod-api'
#公司接口 #公司接口
# VUE_APP_BASE_API = 'http://39.101.188.84:9027' # VUE_APP_BASE_API = 'http://39.101.188.84:9027'
#局域网
VUE_APP_BASE_API = 'http://localhost:9027'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -0,0 +1,53 @@
import request from "@/utils/request";
// 查询数据来源列表
export function listSource(query) {
return request({
url: "/zongzhi/source/list",
method: "get",
params: query,
});
}
// 查询数据来源详细
export function getSource(id) {
return request({
url: "/zongzhi/source/" + id,
method: "get",
});
}
// 新增数据来源
export function addSource(data) {
return request({
url: "/zongzhi/source",
method: "post",
data: data,
});
}
// 修改数据来源
export function updateSource(data) {
return request({
url: "/zongzhi/source",
method: "put",
data: data,
});
}
// 删除数据来源
export function delSource(id) {
return request({
url: "/zongzhi/source/" + id,
method: "delete",
});
}
// 导出数据来源
export function exportSource(data) {
return request({
url: "/zongzhi/source/export",
method: "post",
data,
});
}

@ -0,0 +1,53 @@
import request from "@/utils/request";
// 查询安全检测列表
export function listDetection(query) {
return request({
url: "/zongzhi/detection/list",
method: "get",
params: query,
});
}
// 查询安全检测详细
export function getDetection(id) {
return request({
url: "/zongzhi/detection/" + id,
method: "get",
});
}
// 新增安全检测
export function addDetection(data) {
return request({
url: "/zongzhi/detection",
method: "post",
data: data,
});
}
// 修改安全检测
export function updateDetection(data) {
return request({
url: "/zongzhi/detection",
method: "put",
data: data,
});
}
// 删除安全检测
export function delDetection(id) {
return request({
url: "/zongzhi/detection/" + id,
method: "delete",
});
}
// 导出安全检测
export function exportDetection(data) {
return request({
url: "/zongzhi/detection/export",
method: "post",
data,
});
}

@ -152,9 +152,13 @@
justify-content: center; justify-content: center;
} }
.pagination-container { .pagination-container {
// position: relative; // position: relative;
margin-bottom: 0px !important; margin-bottom: 0px !important;
margin-top: 7px !important; margin-top: 7px !important;
padding: 0 !important; padding: 0 !important;
}
//
.desLable {
width: 180px !important;
} }

@ -34,9 +34,9 @@ export default {
let matched = this.$route.matched.filter(item => item.meta && item.meta.title) let matched = this.$route.matched.filter(item => item.meta && item.meta.title)
const first = matched[0] const first = matched[0]
if (!this.isDashboard(first)) { // if (!this.isDashboard(first)) {
matched = [{ path: '/index', meta: { title: '首页' }}].concat(matched) // matched = [{ path: '/index', meta: { title: '' }}].concat(matched)
} // }
this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false) this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false)
}, },

@ -31,48 +31,48 @@ import Layout from '@/layout'
// 公共路由 // 公共路由
export const constantRoutes = [ export const constantRoutes = [
{ {
path: '/redirect', path: "/redirect",
component: Layout, component: Layout,
hidden: true, hidden: true,
children: [ children: [
{ {
path: '/redirect/:path(.*)', path: "/redirect/:path(.*)",
component: () => import('@/views/redirect') component: () => import("@/views/redirect"),
} },
] ],
}, },
{ {
path: '/login', path: "/login",
component: () => import('@/views/login'), component: () => import("@/views/login"),
hidden: true hidden: true,
}, },
{ {
path: '/register', path: "/register",
component: () => import('@/views/register'), component: () => import("@/views/register"),
hidden: true hidden: true,
}, },
{ {
path: '/404', path: "/404",
component: () => import('@/views/error/404'), component: () => import("@/views/error/404"),
hidden: true hidden: true,
}, },
{ {
path: '/401', path: "/401",
component: () => import('@/views/error/401'), component: () => import("@/views/error/401"),
hidden: true hidden: true,
}, },
{ {
path: '', path: "",
component: Layout, component: Layout,
redirect: 'index', redirect: "",
children: [ // children: [
{ // {
path: 'index', // path: 'index',
component: () => import('@/views/index'), // component: () => import('@/views/index'),
name: 'Index', // name: 'Index',
meta: { title: '首页', icon: 'dashboard', affix: true } // meta: { title: '网络安全', icon: 'dashboard', affix: true }
} // }
] // ]
}, },
// { // {
// path: '/index', // path: '/index',
@ -81,20 +81,20 @@ export const constantRoutes = [
// meta: { title: '首页', icon: 'dashboard', affix: true } // meta: { title: '首页', icon: 'dashboard', affix: true }
// }, // },
{ {
path: '/user', path: "/user",
component: Layout, component: Layout,
hidden: true, hidden: true,
redirect: 'noredirect', redirect: "noredirect",
children: [ children: [
{ {
path: 'profile', path: "profile",
component: () => import('@/views/system/user/profile/index'), component: () => import("@/views/system/user/profile/index"),
name: 'Profile', name: "Profile",
meta: { title: '个人中心', icon: 'user' } meta: { title: "个人中心", icon: "user" },
} },
] ],
} },
] ];
// 动态路由,基于用户权限动态去加载 // 动态路由,基于用户权限动态去加载
export const dynamicRoutes = [ export const dynamicRoutes = [

@ -98,7 +98,8 @@ export default {
watch: { watch: {
$route: { $route: {
handler: function(route) { handler: function(route) {
this.redirect = route.query && route.query.redirect; this.redirect = '/netSecurity/DataSource';
// this.redirect = route.query && route.query.redirect;
}, },
immediate: true immediate: true
} }

@ -0,0 +1,557 @@
<template>
<div class="container-main" ref="main">
<div class="search-hearder" ref="topSearch">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
<el-form-item label="来源类型" prop="type">
<el-select
v-model="queryParams.type"
placeholder="请选择来源类型"
clearable
size="small"
>
<el-option
v-for="dict in dict.type.tc_data_source_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="资产名称" prop="assetName">
<el-input
v-model="queryParams.assetName"
placeholder="请输入资产名称"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="所属单位" prop="affUnit">
<el-input
v-model="queryParams.affUnit"
placeholder="请输入所属单位"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
</div>
<div class="layui-table-tool" ref="tableTool">
<el-button
type="primary"
size="mini"
@click="handleAdd()"
v-hasPermi="['zongzhi:detection:add']"
>新增</el-button
>
<el-button
type="warning"
size="mini"
:loading="exportLoading"
@click="handleExport"
v-hasPermi="['zongzhi:detection:export']"
>导出</el-button
>
</div>
<el-table
v-loading="loading"
:data="sourceList"
:height="tableHeigth"
@selection-change="handleSelectionChange"
>
<el-table-column label="来源类型" align="center" prop="type">
<template slot-scope="scope">
<dict-tag
:options="dict.type.tc_data_source_type"
:value="scope.row.type"
/>
</template>
</el-table-column>
<el-table-column label="资产名称" align="center" prop="assetName" />
<el-table-column
label="所属单位"
align="center"
prop="affUnit"
:show-overflow-tooltip="true"
/>
<el-table-column label="所属分组" align="center" prop="affGroups" />
<el-table-column
label="网站/系统名称"
align="center"
prop="systeamName"
:show-overflow-tooltip="true"
/>
<el-table-column
label="网站地址"
align="center"
prop="url"
:show-overflow-tooltip="true"
/>
<el-table-column label="IP地址" align="center" prop="ipAddress" />
<el-table-column label="操作系统" align="center" prop="os">
<template slot-scope="scope">
<dict-tag :options="dict.type.tc_os" :value="scope.row.os" />
</template>
</el-table-column>
<el-table-column label="版本" align="center" prop="versions" />
<el-table-column label="是否关注重点" align="center" prop="isFocus">
<template slot-scope="scope">
<dict-tag :options="dict.type.tc_yes_no" :value="scope.row.isFocus" />
</template>
</el-table-column>
<el-table-column label="级别" align="center" prop="level">
<template slot-scope="scope">
<dict-tag
:options="dict.type.tc_net_safety_level"
:value="scope.row.level"
/>
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
width="300"
fixed="right"
>
<template slot-scope="scope">
<el-button
size="mini"
@click="handleInfo(scope.row)"
v-hasPermi="['zongzhi/netSecurityDataSource:source:list']"
>
查看
</el-button>
<el-button
type="primary"
size="mini"
@click="handleUpdate(scope.row)"
v-hasPermi="['zongzhi/netSecurityDataSource:source:edit']"
>修改</el-button
>
<el-button
size="mini"
type="danger"
@click="handleDelete(scope.row)"
v-hasPermi="['zongzhi/netSecurityDataSource:source:remove']"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
></pagination>
<!-- 添加或修改安全检测对话框 -->
<el-dialog
:visible.sync="open"
width="500px"
append-to-body
custom-class="dialog-box"
>
<div slot="title" class="dialog-title">{{ title }}</div>
<el-form
ref="form"
:model="form"
:rules="rules"
label-width="auto"
class="dialog-from"
>
<el-form-item label="区域id" prop="areaId">
<el-input v-model="form.areaId" placeholder="请输入区域id" />
</el-form-item>
<el-form-item label="来源类型" prop="type">
<el-select v-model="form.type" placeholder="请选择来源类型">
<el-option
v-for="dict in dict.type.tc_data_source_type"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="资产名称" prop="assetName">
<el-input v-model="form.assetName" placeholder="请输入资产名称" />
</el-form-item>
<el-form-item label="所属单位" prop="affUnit">
<el-input v-model="form.affUnit" placeholder="请输入所属单位" />
</el-form-item>
<el-form-item label="所属分组" prop="affGroups">
<el-input v-model="form.affGroups" placeholder="请输入所属分组" />
</el-form-item>
<el-form-item label="网站/系统名称" prop="systeamName">
<el-input
v-model="form.systeamName"
placeholder="请输入网站/系统名称"
/>
</el-form-item>
<el-form-item label="网站地址" prop="url">
<el-input v-model="form.url" placeholder="请输入网站地址" />
</el-form-item>
<el-form-item label="IP地址" prop="ipAddress">
<el-input v-model="form.ipAddress" placeholder="请输入IP地址" />
</el-form-item>
<el-form-item label="操作系统" prop="os">
<el-select v-model="form.os" placeholder="请选择操作系统">
<el-option
v-for="dict in dict.type.tc_os"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="版本" prop="versions">
<el-input v-model="form.versions" placeholder="请输入版本" />
</el-form-item>
<el-form-item label="是否关注重点" prop="isFocus">
<el-select v-model="form.isFocus" placeholder="请选择是否关注重点">
<el-option
v-for="dict in dict.type.tc_yes_no"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="级别" prop="level">
<el-select v-model="form.level" placeholder="请选择级别">
<el-option
v-for="dict in dict.type.tc_net_safety_level"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<el-dialog
:visible.sync="infoOpen"
width="1200px"
append-to-body
custom-class="dialog-box"
>
<div slot="title" class="dialog-title">{{ infoTitle }}</div>
<el-descriptions
title="数据来源"
:column="2"
border
labelClassName="desLable"
>
<el-descriptions-item label="区域id">{{
form.areaId
}}</el-descriptions-item>
<el-descriptions-item label="来源类型">
<dict-tag
:options="dict.type.tc_data_source_type"
:value="form.type"
/>
</el-descriptions-item>
<el-descriptions-item label="资产名称">{{
form.assetName
}}</el-descriptions-item>
<el-descriptions-item label="所属单位">{{
form.affUnit
}}</el-descriptions-item>
<el-descriptions-item label="所属分组">{{
form.affGroups
}}</el-descriptions-item>
<el-descriptions-item label="网站/系统名称">{{
form.systeamName
}}</el-descriptions-item>
<el-descriptions-item label="网站地址">{{
form.url
}}</el-descriptions-item>
<el-descriptions-item label="IP地址">{{
form.ipAddress
}}</el-descriptions-item>
<el-descriptions-item label="操作系统">
<dict-tag :options="dict.type.tc_os" :value="form.os" />
</el-descriptions-item>
<el-descriptions-item label="版本">{{
form.versions
}}</el-descriptions-item>
<el-descriptions-item label="是否关注重点">
<dict-tag :options="dict.type.tc_yes_no" :value="form.isFocus" />
</el-descriptions-item>
<el-descriptions-item label="级别">
<dict-tag
:options="dict.type.tc_net_safety_level"
:value="form.level"
/>
</el-descriptions-item>
</el-descriptions>
</el-dialog>
</div>
</template>
<script>
import {
listSource,
getSource,
delSource,
addSource,
updateSource,
exportSource,
} from "@/api/zongzhi/netSecurity/DataSource/index.js";
export default {
name: "Detection",
//
dicts: ["tc_yes_no", "tc_data_source_type", "tc_net_safety_level", "tc_os"],
data() {
return {
tableHeigth: 0,
//
infoOpen: false,
//
infoTitle: "",
//
loading: true,
//
exportLoading: false,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
sourceList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
type: null,
assetName: null,
affUnit: null,
},
//
form: {},
//
rules: {},
};
},
mounted() {
// //
this.$nextTick(() => {
this.tableHeigth =
this.$refs.main.offsetHeight -
(this.$refs.topSearch.offsetHeight +
this.$refs.tableTool.offsetHeight) -
46;
this.getList();
});
},
methods: {
/** 查询数据来源列表 */
getList() {
this.loading = true;
listSource(this.queryParams).then((response) => {
this.sourceList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
areaId: null,
type: null,
assetName: null,
affUnit: null,
affGroups: null,
systeamName: null,
url: null,
ipAddress: null,
os: null,
versions: null,
isFocus: null,
level: null,
createId: null,
createBy: null,
createTime: null,
updateId: null,
updateBy: null,
updateTime: null,
remark: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/**查看按钮操作 */
handleInfo(row) {
this.reset();
const id = row.id || this.ids;
getSource(id).then((response) => {
this.form = response.data;
this.infoOpen = true;
this.infoTitle = "查看数据来源详情";
});
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加数据来源";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getSource(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改数据来源";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
updateSource(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addSource(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm(
'是否确认删除数据来源编号为"' + ids + '"的数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}
)
.then(function () {
return delSource(ids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm("是否确认导出所有数据来源数据项?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.download(
"/zongzhi/netSecurityDataSource/source/export",
{
...this.queryParams,
},
"数据来源_" + new Date().getTime() + ".xlsx"
);
this.exportLoading = false;
})
.catch(() => {});
},
},
};
</script>
<style lang="scss" scoped></style>

@ -0,0 +1,9 @@
<template>
<div>安全隐患</div>
</template>
<script>
export default {};
</script>
<style></style>

@ -0,0 +1,571 @@
<template>
<div class="container-main" ref="main">
<div class="search-hearder" ref="topSearch">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
<el-form-item label="攻击类型" prop="attackType">
<el-select
v-model="queryParams.attackType"
placeholder="请选择攻击类型"
clearable
size="small"
>
<el-option
v-for="dict in dict.type.tc_attack_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="网络安全等级" prop="level">
<el-select
v-model="queryParams.level"
placeholder="请选择网络安全等级"
clearable
size="small"
>
<el-option
v-for="dict in dict.type.tc_net_safety_level"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="所属单位" prop="affUnit">
<el-input
v-model="queryParams.affUnit"
placeholder="请输入所属单位"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
</div>
<div class="layui-table-tool" ref="tableTool">
<el-button
type="primary"
size="mini"
@click="handleAdd()"
v-hasPermi="['zongzhi:detection:add']"
>新增</el-button
>
<el-button
type="warning"
size="mini"
:loading="exportLoading"
@click="handleExport"
v-hasPermi="['zongzhi:detection:export']"
>导出</el-button
>
</div>
<el-table
v-loading="loading"
:data="detectionList"
:height="tableHeigth"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column
label="攻击发起时间"
align="center"
prop="attackTime"
width="180"
>
<template slot-scope="scope">
<span>{{ parseTime(scope.row.attackTime, "{y}-{m}-{d}") }}</span>
</template>
</el-table-column>
<el-table-column label="攻击源ID" align="center" prop="sourceIp" />
<el-table-column label="攻击类型" align="center" prop="attackType">
<template slot-scope="scope">
<dict-tag
:options="dict.type.tc_attack_type"
:value="scope.row.attackType"
/>
</template>
</el-table-column>
<el-table-column
label="受攻击IP区域"
align="center"
prop="attackedIpRegion"
/>
<el-table-column label="网络安全等级" align="center" prop="level">
<template slot-scope="scope">
<dict-tag
:options="dict.type.tc_net_safety_level"
:value="scope.row.level"
/>
</template>
</el-table-column>
<el-table-column label="所属单位" align="center" prop="affUnit" />
<el-table-column label="联系电话" align="center" prop="phoneNum" />
<el-table-column label="联系人" align="center" prop="linkMan" />
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
width="300"
fixed="right"
>
<template slot-scope="scope">
<el-button
size="mini"
@click="handleInfo(scope.row)"
v-hasPermi="['zongzhi:detection:list']"
>
查看
</el-button>
<el-button
type="primary"
size="mini"
@click="handleUpdate(scope.row)"
v-hasPermi="['zongzhi:detection:edit']"
>修改</el-button
>
<el-button
size="mini"
type="danger"
@click="handleDelete(scope.row)"
v-hasPermi="['zongzhi:detection:remove']"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
></pagination>
<!-- 添加或修改安全检测对话框 -->
<el-dialog
:visible.sync="open"
width="500px"
append-to-body
custom-class="dialog-box"
>
<div slot="title" class="dialog-title">{{ title }}</div>
<el-form
ref="form"
:model="form"
:rules="rules"
label-width="auto"
class="dialog-from"
>
<el-form-item label="区域id" prop="areaId">
<el-input v-model="form.areaId" placeholder="请输入区域id" />
</el-form-item>
<el-form-item label="攻击发起时间" prop="attackTime">
<el-date-picker
clearable
size="small"
v-model="form.attackTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择攻击发起时间"
>
</el-date-picker>
</el-form-item>
<el-form-item label="攻击源IP" prop="sourceIp">
<el-input v-model="form.sourceIp" placeholder="请输入攻击源IP" />
</el-form-item>
<el-form-item label="攻击源经度" prop="attackedLongitude">
<el-input
v-model="form.attackedLongitude"
placeholder="请输入攻击源经度"
/>
</el-form-item>
<el-form-item label="攻击源纬度" prop="attackedLatitude">
<el-input
v-model="form.attackedLatitude"
placeholder="请输入攻击源纬度"
/>
</el-form-item>
<el-form-item label="攻击类型" prop="attackType">
<el-select v-model="form.attackType" placeholder="请选择攻击类型">
<el-option
v-for="dict in dict.type.tc_attack_type"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="攻击源IP地址区域" prop="attackIpRegion">
<el-input
v-model="form.attackIpRegion"
placeholder="请输入攻击源IP地址区域"
/>
</el-form-item>
<el-form-item label="受攻击IP" prop="attackedIp">
<el-input v-model="form.attackedIp" placeholder="请输入受攻击IP" />
</el-form-item>
<el-form-item label="受攻击IP区域" prop="attackedIpRegion">
<el-input
v-model="form.attackedIpRegion"
placeholder="请输入受攻击IP区域"
/>
</el-form-item>
<el-form-item label="受攻击经度" prop="attackLongitude">
<el-input
v-model="form.attackLongitude"
placeholder="请输入受攻击经度"
/>
</el-form-item>
<el-form-item label="受攻击纬度" prop="attackLatitude">
<el-input
v-model="form.attackLatitude"
placeholder="请输入受攻击纬度"
/>
</el-form-item>
<el-form-item label="网络安全等级" prop="level">
<el-select v-model="form.level" placeholder="请选择网络安全等级">
<el-option
v-for="dict in dict.type.tc_net_safety_level"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="所属单位" prop="affUnit">
<el-input v-model="form.affUnit" placeholder="请输入所属单位" />
</el-form-item>
<el-form-item label="联系电话" prop="phoneNum">
<el-input v-model="form.phoneNum" placeholder="请输入联系电话" />
</el-form-item>
<el-form-item label="联系人" prop="linkMan">
<el-input v-model="form.linkMan" placeholder="请输入联系人" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<el-dialog
:visible.sync="infoOpen"
width="1200px"
append-to-body
custom-class="dialog-box"
>
<div slot="title" class="dialog-title">{{ infoTitle }}</div>
<el-descriptions
title="安全检测"
:column="2"
border
labelClassName="desLable"
>
<el-descriptions-item label="区域id">{{
form.areaId
}}</el-descriptions-item>
<el-descriptions-item label="攻击发起时间">{{
form.attackTime
}}</el-descriptions-item>
<el-descriptions-item label="攻击源ID">{{
form.sourceIp
}}</el-descriptions-item>
<el-descriptions-item label="攻击源经度">{{
form.attackedLongitude
}}</el-descriptions-item>
<el-descriptions-item label="攻击源纬度">{{
form.attackedLatitude
}}</el-descriptions-item>
<el-descriptions-item label="攻击类型">
<dict-tag
:options="dict.type.tc_attack_type"
:value="form.attackType"
/>
</el-descriptions-item>
<el-descriptions-item label="攻击源IP地址区域">{{
form.attackIpRegion
}}</el-descriptions-item>
<el-descriptions-item label="受攻击IP">{{
form.attackedIp
}}</el-descriptions-item>
<el-descriptions-item label="受攻击IP区域">{{
form.attackedIpRegion
}}</el-descriptions-item>
<el-descriptions-item label="受攻击经度">{{
form.attackLongitude
}}</el-descriptions-item>
<el-descriptions-item label="受攻击纬度">{{
form.attackLatitude
}}</el-descriptions-item>
<el-descriptions-item label="网络安全等级">
<dict-tag
:options="dict.type.tc_net_safety_level"
:value="form.level"
/>
</el-descriptions-item>
<el-descriptions-item label="所属单位">{{
form.affUnit
}}</el-descriptions-item>
<el-descriptions-item label="联系电话">{{
form.phoneNum
}}</el-descriptions-item>
<el-descriptions-item label="联系人">{{
form.linkMan
}}</el-descriptions-item>
</el-descriptions>
</el-dialog>
</div>
</template>
<script>
import {
listDetection,
getDetection,
delDetection,
addDetection,
updateDetection,
exportDetection,
} from "@/api/zongzhi/netSecurity/SecurityCheck/index.js";
export default {
name: "Detection",
//
dicts: ["tc_net_safety_level", "tc_attack_type"],
data() {
return {
tableHeigth: 0,
//
infoOpen: false,
//
infoTitle: "",
//
loading: true,
//
exportLoading: false,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
detectionList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
attackType: null,
level: null,
affUnit: null,
},
//
form: {},
//
rules: {},
};
},
mounted() {
// //
this.$nextTick(() => {
this.tableHeigth =
this.$refs.main.offsetHeight -
(this.$refs.topSearch.offsetHeight +
this.$refs.tableTool.offsetHeight) -
46;
this.getList();
});
},
methods: {
/** 查询安全检测列表 */
getList() {
this.loading = true;
listDetection(this.queryParams).then((response) => {
this.detectionList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
areaId: null,
attackTime: null,
sourceIp: null,
attackedLongitude: null,
attackedLatitude: null,
attackType: null,
attackIpRegion: null,
attackedIp: null,
attackedIpRegion: null,
attackLongitude: null,
attackLatitude: null,
level: null,
affUnit: null,
phoneNum: null,
linkMan: null,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length !== 1;
this.multiple = !selection.length;
},
/**查看按钮操作 */
handleInfo(row) {
this.reset();
const id = row.id || this.ids;
getDetection(id).then((response) => {
this.form = response.data;
this.infoOpen = true;
this.infoTitle = "查看安全检测详情";
});
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加安全检测";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getDetection(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改安全检测";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
updateDetection(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addDetection(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm(
'是否确认删除安全检测编号为"' + ids + '"的数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}
)
.then(function () {
return delDetection(ids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm("是否确认导出所有安全检测数据项?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.download(
"/zongzhi/detection/export",
{
...this.queryParams,
},
"安全检测_" + new Date().getTime() + ".xlsx"
);
this.exportLoading = false;
})
.catch(() => {});
},
},
};
</script>
<style lang="scss" scoped></style>

@ -2,14 +2,8 @@
<div class="container-main" ref="main"> <div class="container-main" ref="main">
<div class="search-hearder" ref="topSearch"> <div class="search-hearder" ref="topSearch">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true"> <el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
<el-form-item label="名称" prop="noticeTitle"> >
<el-input
v-model="queryParams.noticeTitle"
placeholder="请输入"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button
type="primary" type="primary"
@ -18,73 +12,45 @@
@click="handleQuery" @click="handleQuery"
>搜索</el-button >搜索</el-button
> >
<el-button size="mini" @click="resetQuery"></el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
<div class="layui-table-tool" ref="tableTool"> <div class="layui-table-tool" ref="tableTool">
<el-button type="primary" size="mini" @click="clickAdd()"></el-button> <el-button type="primary" size="mini" @click="handleAdd()"
<el-button type="warning" size="mini" @click="handleExport()" >新增</el-button
>
<el-button
type="warning"
size="mini"
:loading="exportLoading"
@click="handleExport"
>导出</el-button >导出</el-button
> >
</div> </div>
<el-table v-loading="loading" :data="tableList" :height="tableHeigth"> <el-table
<el-table-column label="序号" align="center" width="55" type="index" /> v-loading="loading"
<el-table-column :data="sourceList"
label="园区名称" :height="tableHeigth"
prop="parkName" @selection-change="handleSelectionChange"
:show-overflow-tooltip="true" >
/>
<el-table-column
label="所属区域"
prop="homeLocation"
:show-overflow-tooltip="true"
/>
<el-table-column
label="企业数量"
prop="numberEnterprises"
:show-overflow-tooltip="true"
/>
<el-table-column
label="占地面积"
prop="floorArea"
:show-overflow-tooltip="true"
/>
<el-table-column
label="占地面积"
prop="floorAreaT"
:show-overflow-tooltip="true"
/>
<el-table-column
label="更新时间"
prop="updateTime"
:show-overflow-tooltip="true"
/>
<el-table-column <el-table-column
label="操作" label="操作"
align="center" align="center"
class-name="small-padding fixed-width" class-name="small-padding fixed-width"
width="300"
fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button size="mini" @click="handleInfo(scope.row)">
size="mini" 查看
icon="el-icon-view" </el-button>
@click="handleView(scope.row)" <el-button type="primary" size="mini" @click="handleUpdate(scope.row)"
>查看</el-button
>
<el-button
type="primary"
size="mini"
icon="el-icon-edit"
@click="handleUpdata(scope.row)"
>修改</el-button >修改</el-button
> >
<el-button <el-button size="mini" type="danger" @click="handleDelete(scope.row)"
size="mini"
type="danger"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button >删除</el-button
> >
</template> </template>
@ -98,184 +64,25 @@
@pagination="getList" @pagination="getList"
></pagination> ></pagination>
<!-- 添加或修改安全检测对话框 -->
<el-dialog <el-dialog
:visible.sync="open" :visible.sync="open"
width="1200px" width="500px"
append-to-body append-to-body
custom-class="dialog-box" custom-class="dialog-box"
> >
<div slot="title" class="dialog-title">{{ dialogTitle }}</div> <div slot="title" class="dialog-title">{{ title }}</div>
<el-form <el-form
ref="form" ref="form"
:model="form" :model="form"
:rules="rules" :rules="rules"
label-width="130px" label-width="auto"
class="dialog-from" class="dialog-from"
:show-message="false"
> >
<el-row>
<el-col :span="12">
<el-form-item label="园区名称" prop="parkName">
<el-input
v-model="form.parkName"
placeholder="请输入园区名称"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="园区地址" prop="parkAddress">
<el-input
v-model="form.parkAddress"
placeholder="请输入园区地址"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="归属地" prop="homeLocation">
<el-input v-model="form.homeLocation" placeholder="请输入归属地" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="楼幢数量" prop="numberBuildings">
<el-input
v-model="form.numberBuildings"
placeholder="请输入楼幢数量(幢)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="企业数量" prop="numberEnterprises">
<el-input
v-model="form.numberEnterprises"
placeholder="请输入企业数量(家)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="员工总人数" prop="totalEmployees">
<el-input
v-model="form.totalEmployees"
placeholder="请输入员工总人数(人)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="占地面积" prop="floorArea">
<el-input
v-model="form.floorArea"
placeholder="请输入占地面积(m²)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="占地面积" prop="floorAreaT">
<el-input
v-model="form.floorAreaT"
placeholder="请输入占地面积(亩)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="总建筑面积" prop="totalBuildingArea">
<el-input
v-model="form.totalBuildingArea"
placeholder="请输入总建筑面积(m²)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="出租面积" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入出租面积(m²)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="自用面积" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入自用面积(m²)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="年租金总额" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入年租金总额(万元)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="平均月租金单价" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入平均月租金单价(元/m²/月)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="土地证面积" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入土地证面积(亩)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="无证面积" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入无证面积(亩)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="房产证面积" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入房产证面积(m²)"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="无证面积" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入无证面积(m²)"
/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="年总税收" prop="noticeTitle">
<el-input
v-model="form.noticeTitle"
placeholder="请输入年总税收(万元)"
/>
</el-form-item>
</el-col>
</el-row>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" size="mini"> </el-button> <el-button type="primary" @click="submitForm"> </el-button>
<el-button size="mini"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -285,245 +92,40 @@
append-to-body append-to-body
custom-class="dialog-box" custom-class="dialog-box"
> >
<div slot="title" class="dialog-title">{{ infoTitel }}</div> <div slot="title" class="dialog-title">{{ infoTitle }}</div>
<div class="Descriptions-box"> <el-descriptions
<div class="row-item"> title="数据来源"
<div class="row-lable">园区名称</div> :column="2"
<div class="row-value"></div> border
<div class="row-lable">归属地</div> labelClassName="desLable"
<div class="row-value"></div> >
</div> </el-descriptions>
<div class="row-item">
<div class="row-lable">园区地址</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">楼幢数量()</div>
<div class="row-value"></div>
<div class="row-lable">企业数量()</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">员工总人数()</div>
<div class="row-value"></div>
<div class="row-lable">占地面积()</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">占地面积()</div>
<div class="row-value"></div>
<div class="row-lable">总建筑面积()</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">出租面积()</div>
<div class="row-value"></div>
<div class="row-lable">自用面积()</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">年租金总额(万元)</div>
<div class="row-value"></div>
<div class="row-lable">平均月租金单价(//)</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">土地证面积()</div>
<div class="row-value"></div>
<div class="row-lable">无证面积()</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">房产证面积()</div>
<div class="row-value"></div>
<div class="row-lable">无证面积()</div>
<div class="row-value"></div>
</div>
<div class="row-item">
<div class="row-lable">年总税收(万元)</div>
<div class="row-value"></div>
<div class="row-lable">亩均税收(万元/千m²)</div>
<div class="row-value"></div>
</div>
</div>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: "Detection",
//
data() { data() {
return { return {
infoOpen: false, // tableHeigth: 0,
infoTitel: "文章详情", //
dialogTitle: "", //
open: false, //
tableHeigth: 0, //
loading: false,
total: 10,
details: "",
//
queryParams: {
pageNum: 1,
pageSize: 20,
},
form: {
annualGrossTaxRevenue: 0,
averageMonthlyRentalUnitPrice: 0,
floorArea: 0,
floorAreaT: 0,
homeLocation: "",
landCertificateArea: 0,
latlng: 0,
numberBuildings: 0,
numberEnterprises: 0,
parkAddress: "",
parkName: "",
parkOrgId: "",
realEstateCertificateArea: 0,
remark: "",
rentalArea: 0,
selfArea: 0,
taxPerMu: 0,
totalAnnualRent: 0,
totalBuildingArea: 0,
totalEmployees: 0,
},
rules: {
// noticeTitle: [
// { required: true, message: "", trigger: "blur" },
// ],
content: [
{ required: true, message: "请输入发布内容", trigger: "blur" },
],
cover: [
{ required: true, message: "请选择要发布的图片", trigger: "blur" },
],
sort: [{ required: true, message: "请输入轮播顺序", trigger: "blur" }],
title: [{ required: true, message: "请输入标题", trigger: "blur" }],
type: [{ required: true, message: "请选择类型", trigger: "blur" }],
},
tableList: [],
}; };
}, },
mounted() { mounted() {
// // //
this.$nextTick(() => { this.$nextTick(() => {
this.tableHeigth = this.tableHeigth =
this.$refs.main.offsetHeight - this.$refs.main.offsetHeight -
(this.$refs.topSearch.offsetHeight + (this.$refs.topSearch.offsetHeight +
this.$refs.tableTool.offsetHeight) - this.$refs.tableTool.offsetHeight) -
46; 46;
this.getList();
}); });
// this.getList();
},
methods: {
/**新增 */
clickAdd() {
this.dialogTitle = "新增文章";
this.resetQuery();
this.open = true;
},
/**修改 */
handleUpdata(row) {
this.dialogTitle = "修改文章";
this.open = true;
this.$api.overview.info(row.id).then((response) => {
console.log(response);
this.form = response.data;
});
},
/**删除 */
handleDelete(row) {
this.$modal
.confirm("你确认要删除所选数据吗?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.$api.overview.delete(row.id).then((response) => {
console.log(response);
});
this.getList();
})
.catch(() => {});
},
/**查看详情 */
handleView(row) {
this.infoTitel = "查看详情";
this.infoOpen = true;
getProfile(row.id).then((response) => {
this.details = response.data;
});
},
/**获取列表数据 */
getList() {
this.loading = true;
listProfile().then((response) => {
this.tableList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/**导出 */
handleExport() {
this.$modal
.confirm("您确认要导出数据吗?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(function () {})
.catch(() => {});
},
/*搜索 */
handleQuery() {},
/**重置 */
resetQuery() {
this.form = {
content: "",
cover: "",
isCarousel: "",
sort: "",
title: "",
type: 1,
};
},
submint() {
this.$refs.form.validate((valid) => {
if (valid) {
// console.log(this.form);
if (this.dialogTitle == "修改文章") {
this.$api.overview.updata(this.form).then((response) => {
this.$message({
message: "修改成功",
type: "success",
});
this.open = false;
});
} else if (this.dialogTitle == "新增文章") {
this.$api.overview.add(this.form).then((response) => {
this.$message({
message: "新增成功",
type: "success",
});
this.open = false;
});
}
this.getList();
}
});
},
cancel() {
this.open = false;
},
}, },
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped></style>
</style>

Loading…
Cancel
Save