font-end/src/views/main/scrsecurity/index.vue

254 lines
8.2 KiB
Vue
Raw Normal View History

2025-10-14 17:41:30 +08:00
<template>
<div>
<a-card :bordered="false" :bodyStyle="tstyle">
<div class="table-page-search-wrapper">
<a-form layout="inline">
<a-row :gutter="48">
<a-col :md="8" :sm="24">
<a-form-item label="发生时间">
<a-date-picker style="width: 100%" placeholder="请选择发生时间" v-model="queryParam.happenTimeDate" @change="onChangehappenTime"/>
</a-form-item>
</a-col>
<a-col :md="8" :sm="24">
<a-form-item label="事件类型">
<a-input v-model="queryParam.eventType" allow-clear placeholder="请输入事件类型"/>
</a-form-item>
</a-col>
<template v-if="advanced">
<a-col :md="8" :sm="24">
<a-form-item label="标题">
<a-input v-model="queryParam.title" allow-clear placeholder="请输入标题"/>
</a-form-item>
</a-col>
<a-col :md="8" :sm="24">
<a-form-item label="内容">
<a-input v-model="queryParam.content" allow-clear placeholder="请输入内容"/>
</a-form-item>
</a-col>
<a-col :md="8" :sm="24">
<a-form-item label="应对处理">
<a-input v-model="queryParam.cope" allow-clear placeholder="请输入应对处理"/>
</a-form-item>
</a-col>
<a-col :md="8" :sm="24">
<a-form-item label="责任主体">
<a-input v-model="queryParam.responsible" allow-clear placeholder="请输入责任主体"/>
</a-form-item>
</a-col>
</template>
<a-col :md="8" :sm="24" >
<span class="table-page-search-submitButtons">
<a-button type="primary" @click="$refs.table.refresh(true)" >查询</a-button>
<a-button style="margin-left: 8px" @click="() => queryParam = {}">重置</a-button>
<a @click="toggleAdvanced" style="margin-left: 8px">
{{ advanced ? '收起' : '展开' }}
<a-icon :type="advanced ? 'up' : 'down'"/>
</a>
</span>
</a-col>
</a-row>
</a-form>
</div>
</a-card>
<a-card :bordered="false">
<s-table
ref="table"
:columns="columns"
:data="loadData"
:alert="options.alert"
:rowKey="(record) => record.id"
:rowSelection="options.rowSelection"
>
<template class="table-operator" slot="operator">
<a-button type="primary" icon="plus" @click="$refs.addForm.add()">新增</a-button>
<a-button type="danger" :disabled="selectedRowKeys.length < 1" @click="batchDelete"><a-icon type="delete"/>批量删除</a-button>
<x-down
ref="batchExport"
@batchExport="batchExport"
/>
</template>
<span slot="contentScopedSlots" slot-scope="text">
<ellipsis :length="10" tooltip>{{ text }}</ellipsis>
</span>
<span slot="copeScopedSlots" slot-scope="text">
<ellipsis :length="10" tooltip>{{ text }}</ellipsis>
</span>
<span slot="responsibleScopedSlots" slot-scope="text">
<ellipsis :length="10" tooltip>{{ text }}</ellipsis>
</span>
<span slot="action" slot-scope="text, record">
<a @click="$refs.editForm.edit(record)">编辑</a>
<a-divider type="vertical" />
<a-popconfirm placement="topRight" title="确认删除?" @confirm="() => singleDelete(record)">
<a>删除</a>
</a-popconfirm>
</span>
</s-table>
<add-form ref="addForm" @ok="handleOk" />
<edit-form ref="editForm" @ok="handleOk" />
</a-card>
</div>
</template>
<script>
import { STable, XDown, Ellipsis } from '@/components'
import moment from 'moment'
import { scrSecurityPage, scrSecurityDelete, scrSecurityExport } from '@/api/modular/main/scrsecurity/scrSecurityManage'
import addForm from './addForm.vue'
import editForm from './editForm.vue'
export default {
components: {
Ellipsis,
STable,
addForm,
editForm,
XDown
},
data () {
return {
// 高级搜索 展开/关闭
advanced: false,
// 查询参数
queryParam: {},
// 表头
columns: [
{
title: '发生时间',
align: 'center',
dataIndex: 'happenTime',
customRender: (text, record) => {
return moment(text).format('YYYY-MM-DD HH:mm:ss')
}
},
{
title: '事件类型',
align: 'center',
dataIndex: 'eventType'
},
{
title: '标题',
align: 'center',
dataIndex: 'title'
},
{
title: '内容',
align: 'center',
dataIndex: 'content',
scopedSlots: { customRender: 'contentScopedSlots' }
},
{
title: '应对处理',
align: 'center',
dataIndex: 'cope',
scopedSlots: { customRender: 'copeScopedSlots' }
},
{
title: '责任主体',
align: 'center',
dataIndex: 'responsible',
scopedSlots: { customRender: 'responsibleScopedSlots' }
}
],
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
// 加载数据方法 必须为 Promise 对象
loadData: parameter => {
return scrSecurityPage(Object.assign(parameter, this.switchingDate())).then((res) => {
return res.data
})
},
selectedRowKeys: [],
selectedRows: [],
options: {
alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
rowSelection: {
selectedRowKeys: this.selectedRowKeys,
onChange: this.onSelectChange
}
}
}
},
created () {
this.columns.push({
title: '操作',
width: '150px',
dataIndex: 'action',
scopedSlots: { customRender: 'action' }
})
},
methods: {
moment,
/**
* 查询参数组装
*/
switchingDate () {
const queryParamhappenTime = this.queryParam.happenTimeDate
if (queryParamhappenTime != null) {
this.queryParam.happenTime = moment(queryParamhappenTime).format('YYYY-MM-DD')
if (queryParamhappenTime.length < 1) {
delete this.queryParam.happenTime
}
}
const obj = JSON.parse(JSON.stringify(this.queryParam))
return obj
},
/**
* 单个删除
*/
singleDelete (record) {
const param = [{ 'id': record.id }]
this.scrSecurityDelete(param)
},
/**
* 批量删除
*/
batchDelete () {
const paramIds = this.selectedRowKeys.map((d) => {
return { 'id': d }
})
this.scrSecurityDelete(paramIds)
},
scrSecurityDelete (record) {
scrSecurityDelete(record).then((res) => {
if (res.success) {
this.$message.success('删除成功')
this.$refs.table.clearRefreshSelected()
} else {
this.$message.error('删除失败') // + res.message
}
})
},
toggleAdvanced () {
this.advanced = !this.advanced
},
onChangehappenTime(date, dateString) {
this.happenTimeDateString = dateString
},
/**
* 批量导出
*/
batchExport () {
const paramIds = this.selectedRowKeys.map((d) => {
return { 'id': d }
})
scrSecurityExport(paramIds).then((res) => {
this.$refs.batchExport.downloadfile(res)
})
},
handleOk () {
this.$refs.table.refresh()
},
onSelectChange (selectedRowKeys, selectedRows) {
this.selectedRowKeys = selectedRowKeys
this.selectedRows = selectedRows
}
}
}
</script>
<style lang="less">
.table-operator {
margin-bottom: 18px;
}
button {
margin-right: 8px;
}
</style>