parent
13aad416a5
commit
aaf07187dc
@ -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,
|
||||||
|
});
|
||||||
|
}
|
@ -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>
|
Loading…
Reference in new issue