This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/views/detections/DetectionList.vue

95 lines
2.3 KiB
Vue
Raw Normal View History

2022-02-14 22:22:31 +08:00
<template>
2022-02-18 17:54:22 +08:00
<div class="detection-list" id="detectionList">
<loading :loading="loading"></loading>
2022-02-18 17:54:22 +08:00
<div class="detection-list__content">
<div class="detection-list--list">
2022-02-14 22:22:31 +08:00
<div class="no-data" v-if="noData">No data</div>
2022-02-18 17:54:22 +08:00
<div v-if="!isCollapse" @click="collapse" class="cn-detection__shadow"></div>
2022-02-14 22:22:31 +08:00
<detection-row
v-for="(data, index) in listData"
:detection="data"
:page-type="pageType"
2022-02-14 22:22:31 +08:00
:timeFilter="timeFilter"
:key="index"
:ref="`detectionRow${index}`"
:index="index"
@switchCollapse="switchCollapse"
></detection-row>
</div>
</div>
</div>
</template>
<script>
import DetectionRow from '@/views/detections/DetectionRow'
import Loading from '@/components/common/Loading'
2022-02-14 22:22:31 +08:00
export default {
name: 'DetectionList',
components: {
Loading,
2022-02-14 22:22:31 +08:00
DetectionRow
},
props: {
listData: Array,
from: String,
pageObj: Object,
loading: Boolean,
timeFilter: Object,
pageType: String // 安全事件、服务质量
2022-02-14 22:22:31 +08:00
},
data () {
return {
showDetail: false,
typeName: '',
detectionList: [],
isCollapse: true,
collapseIndex: 0,
tableId: 'detectionList',
listDataCopy: [],
noData: false
}
},
mounted () {
// 监听⿏标滚动事件
window.addEventListener('mousewheel', this.handleScroll)
},
unmounted () {
window.removeEventListener('mousewheel', this.handleScroll)
},
2022-02-14 22:22:31 +08:00
methods: {
switchCollapse (isCollapse, index) {
this.isCollapse = isCollapse
this.collapseIndex = index
if (isCollapse) {
this.emitter.emit('switch-collapse')
}
2022-02-14 22:22:31 +08:00
},
collapse () {
this.isCollapse = true
this.$refs[`detectionRow${this.collapseIndex}`].collapse()
},
handleScroll (e) {
if (e.target.className === 'cn-detection__shadow') {
const container = document.getElementById('cnContainer')
container.scrollTop += e.deltaY / 2
}
2022-02-14 22:22:31 +08:00
}
},
watch: {
listData: {
deep: true,
handler (n) {
if (!n || n.length === 0) {
this.timeout = setTimeout(() => {
this.noData = true
}, 500)
} else {
clearTimeout(this.timeout)
this.noData = false
}
}
}
}
}
</script>