2023-05-17 10:51:52 +08:00
|
|
|
<template>
|
|
|
|
|
<el-table
|
2023-06-16 17:51:08 +08:00
|
|
|
id="knowledgeBaseTable"
|
|
|
|
|
ref="dataTable"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
:height="height"
|
|
|
|
|
border
|
|
|
|
|
empty-text=" "
|
|
|
|
|
@header-dragend="dragend"
|
|
|
|
|
@sort-change="tableDataSort"
|
|
|
|
|
@selection-change="selectionChange"
|
2023-05-17 10:51:52 +08:00
|
|
|
>
|
2023-06-16 17:51:08 +08:00
|
|
|
<el-table-column
|
|
|
|
|
:resizable="false"
|
|
|
|
|
align="center"
|
|
|
|
|
type="selection"
|
|
|
|
|
:selectable="selectable"
|
|
|
|
|
width="55">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
2023-08-03 15:54:30 +08:00
|
|
|
v-for="(item, index) in tableTitle"
|
2023-06-16 17:51:08 +08:00
|
|
|
:key="`col-${index}`"
|
|
|
|
|
:fixed="item.fixed"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:min-width="`${item.minWidth}`"
|
|
|
|
|
:prop="item.prop"
|
|
|
|
|
:resizable="true"
|
|
|
|
|
:sort-orders="['ascending', 'descending']"
|
|
|
|
|
:sortable="item.sortable"
|
|
|
|
|
:width="`${item.width}`"
|
|
|
|
|
class="data-column"
|
|
|
|
|
>
|
|
|
|
|
<template #header>
|
|
|
|
|
<span class="data-column__span">{{item.label}}</span>
|
|
|
|
|
<div class="col-resize-area"></div>
|
|
|
|
|
</template>
|
|
|
|
|
<template #default="scope" :column="item">
|
|
|
|
|
<template v-if="item.prop === 'name'" >
|
|
|
|
|
<template v-if="scope.row.i18n">
|
|
|
|
|
<span :title="scope.row[item.prop]">{{$t(scope.row.i18n)}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else-if="scope.row.name">
|
|
|
|
|
<span :title="scope.row[item.prop]">{{scope.row.name}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<span>-</span>
|
|
|
|
|
</template>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
<template v-else-if="item.prop === 'category'">
|
|
|
|
|
<span >{{tagCategoryText(scope.row[item.prop])}}</span>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
<template v-else-if="item.prop === 'source'">
|
|
|
|
|
<span class="type-tag">{{tagSourceText(scope.row[item.prop])}}</span>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-08-03 15:54:30 +08:00
|
|
|
<template v-else-if="item.prop === 'reference'" >
|
|
|
|
|
<templage v-if="scope.row[item.prop] && scope.row[item.prop].length > 2" >
|
|
|
|
|
<el-popover placement="right-end" trigger="hover" :show-arrow="false" offset="0" ref="referenceMoreInfo"
|
|
|
|
|
hide-after="0" >
|
|
|
|
|
<template #reference>
|
|
|
|
|
<div class="reference-tag__show">
|
|
|
|
|
<div class="reference-tag__group">
|
|
|
|
|
<span class="reference-tag" v-for="(refer, index) in scope.row[item.prop].slice(0,2)" >{{refer}}</span>
|
|
|
|
|
</div>
|
2023-10-31 11:26:46 +08:00
|
|
|
<div class="reference-more">+{{scope.row[item.prop].length - 2}} {{$t('overall.more')}}</div>
|
2023-08-03 15:54:30 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<div class="reference-tag__tip">
|
|
|
|
|
<span class="reference-tag" v-for="(refer, index) in scope.row[item.prop].slice(2)" >{{refer}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-popover>
|
|
|
|
|
</templage>
|
|
|
|
|
<template v-else>
|
2023-11-02 15:10:09 +08:00
|
|
|
<div class="reference-tag__show">
|
|
|
|
|
<div class="reference-tag__group">
|
|
|
|
|
<span class="reference-tag" v-for="(refer, index) in scope.row[item.prop]" >{{refer}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-08-03 15:54:30 +08:00
|
|
|
</template>
|
|
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
<template v-else-if="item.prop === 'opTime' || item.prop === 'ctime'">
|
|
|
|
|
<template v-if="scope.row[item.prop]">
|
|
|
|
|
{{dateFormatByAppearance(scope.row[item.prop])}}
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<span>-</span>
|
|
|
|
|
</template>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
<template v-else-if="item.prop === 'cuser' || item.prop === 'uuser'">
|
|
|
|
|
<template v-if="scope.row[item.prop]">
|
|
|
|
|
{{scope.row[item.prop].username || '-'}}
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<span>-</span>
|
|
|
|
|
</template>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
<template v-else-if="item.prop === 'description'">
|
|
|
|
|
<span class="list-desc" :title="scope.row[item.prop]">{{scope.row[item.prop]}}</span>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-09-19 13:46:04 +08:00
|
|
|
<template v-else-if="item.prop === 'status'">
|
|
|
|
|
<el-switch v-model="scope.row.status"
|
2023-11-20 18:14:42 +08:00
|
|
|
v-if="hasPermission('editUserDefinedLibrary')"
|
2023-09-19 13:46:04 +08:00
|
|
|
active-color="#38ACD2"
|
|
|
|
|
inactive-color="#C0CEDB"
|
|
|
|
|
:active-value="1"
|
|
|
|
|
:inactive-value="0"
|
|
|
|
|
@change="changeStatus($event,scope.row.knowledgeId)"
|
|
|
|
|
>
|
|
|
|
|
</el-switch>
|
2023-11-20 18:14:42 +08:00
|
|
|
<template v-else>
|
|
|
|
|
<span v-if="scope.row.status === 1">{{$t('detection.create.enabled')}}</span>
|
|
|
|
|
<span v-else>{{$t('detection.create.disabled')}}</span>
|
|
|
|
|
</template>
|
2023-09-19 13:46:04 +08:00
|
|
|
</template>
|
2023-10-09 11:55:19 +08:00
|
|
|
<template v-else-if="item.prop === 'color'">
|
|
|
|
|
<div class="knowledge-color">
|
|
|
|
|
<span class="knowledge-color__icon" :class="colorName(scope.row[item.prop])"></span> <span>{{colorText(scope.row[item.prop])}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
<span v-else>{{scope.row[item.prop] || '-'}}</span>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
</el-table-column>
|
|
|
|
|
<template v-slot:empty >
|
|
|
|
|
<div class="table-no-data" v-if="isNoData">
|
|
|
|
|
<div class="table-no-data__title">{{ $t('npm.noData') }}</div>
|
|
|
|
|
</div>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
2023-06-16 17:51:08 +08:00
|
|
|
</el-table>
|
2023-05-17 10:51:52 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import table from '@/mixins/table'
|
2023-10-27 07:46:34 +08:00
|
|
|
import { knowledgeBaseCategory, knowledgeBaseSource } from '@/utils/constants'
|
2023-05-17 10:51:52 +08:00
|
|
|
export default {
|
|
|
|
|
name: 'KnowledgeBaseTableForRow',
|
2023-06-16 17:51:08 +08:00
|
|
|
props: {
|
|
|
|
|
isNoData: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-05-17 10:51:52 +08:00
|
|
|
mixins: [table],
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
tableTitle: [ // 原table列
|
|
|
|
|
{
|
|
|
|
|
label: 'ID',
|
2023-05-29 13:00:28 +08:00
|
|
|
prop: 'knowledgeId',
|
2023-05-17 10:51:52 +08:00
|
|
|
show: true,
|
2023-08-03 15:54:30 +08:00
|
|
|
width: 100,
|
2023-05-17 10:51:52 +08:00
|
|
|
sortable: 'custom'
|
|
|
|
|
}, {
|
2023-08-03 15:54:30 +08:00
|
|
|
label: this.$t('overall.name'),
|
2023-05-29 13:00:28 +08:00
|
|
|
prop: 'name',
|
|
|
|
|
minWidth: 100,
|
2023-08-03 15:54:30 +08:00
|
|
|
width: 150,
|
2023-05-17 10:51:52 +08:00
|
|
|
show: true,
|
|
|
|
|
sortable: 'custom'
|
|
|
|
|
}, {
|
2023-08-03 15:54:30 +08:00
|
|
|
label: this.$t('overall.type'),
|
2023-08-03 15:51:20 +08:00
|
|
|
prop: 'source',
|
|
|
|
|
width: 130,
|
2023-08-03 15:48:44 +08:00
|
|
|
show: true
|
2023-08-03 15:54:30 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('knowledge.reference'),
|
|
|
|
|
prop: 'reference',
|
2023-10-31 11:26:46 +08:00
|
|
|
width: 190,
|
2023-08-03 15:54:30 +08:00
|
|
|
show: true
|
2023-10-09 11:55:19 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('overall.color'),
|
|
|
|
|
prop: 'color',
|
|
|
|
|
width: 180,
|
|
|
|
|
show: true
|
2023-05-17 10:51:52 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('overall.remark'),
|
2023-05-29 13:00:28 +08:00
|
|
|
prop: 'description',
|
|
|
|
|
minWidth: 150,
|
2023-05-17 10:51:52 +08:00
|
|
|
show: true
|
|
|
|
|
},
|
2023-08-03 15:54:30 +08:00
|
|
|
/*
|
2023-05-17 10:51:52 +08:00
|
|
|
{
|
|
|
|
|
label: this.$t('overall.createdBy'),
|
2023-05-29 13:00:28 +08:00
|
|
|
prop: 'opUser',
|
|
|
|
|
show: false
|
2023-05-17 10:51:52 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('config.user.createTime'),
|
|
|
|
|
prop: 'ctime',
|
|
|
|
|
show: false,
|
|
|
|
|
sortable: 'custom'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('overall.updatedBy'),
|
|
|
|
|
prop: 'uuser',
|
|
|
|
|
show: false
|
2023-08-03 15:54:30 +08:00
|
|
|
}, */
|
2023-05-17 10:51:52 +08:00
|
|
|
{
|
|
|
|
|
label: this.$t('overall.updateTime'),
|
2023-05-29 13:00:28 +08:00
|
|
|
prop: 'opTime',
|
|
|
|
|
show: true,
|
2023-08-03 15:54:30 +08:00
|
|
|
width: 150,
|
2023-05-17 10:51:52 +08:00
|
|
|
sortable: 'custom'
|
2023-09-19 13:46:04 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('knowledge.status'),
|
|
|
|
|
prop: 'status',
|
|
|
|
|
show: true,
|
|
|
|
|
width: 80
|
2023-05-17 10:51:52 +08:00
|
|
|
}
|
2023-10-09 11:55:19 +08:00
|
|
|
],
|
2023-10-27 07:46:34 +08:00
|
|
|
knowledgeBaseColor: [
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('knowledge.info'),
|
|
|
|
|
value: 'rgb(119,131,145)',
|
|
|
|
|
name: 'info'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('knowledge.benign'),
|
|
|
|
|
value: 'rgb(116,159,77)',
|
|
|
|
|
name: 'benign'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('knowledge.malicious'),
|
|
|
|
|
value: 'rgb(226,97,84)',
|
|
|
|
|
name: 'malicious'
|
|
|
|
|
}
|
|
|
|
|
]
|
2023-05-17 10:51:52 +08:00
|
|
|
}
|
|
|
|
|
},
|
2023-08-03 15:54:30 +08:00
|
|
|
watch: {
|
|
|
|
|
tableData: {
|
|
|
|
|
handler (n) {
|
|
|
|
|
if (this.tableData && this.tableData.length > 0) {
|
|
|
|
|
this.tableData.forEach(item => {
|
|
|
|
|
item.reference = []
|
|
|
|
|
|
|
|
|
|
if (item.refRule && item.refRule.length > 0) {
|
|
|
|
|
item.refRule.forEach(ref => {
|
|
|
|
|
item.reference.push(ref.name)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-05-17 10:51:52 +08:00
|
|
|
computed: {
|
2023-05-29 13:00:28 +08:00
|
|
|
tagCategoryText () {
|
|
|
|
|
return function (type) {
|
|
|
|
|
const t = knowledgeBaseCategory.find(t => t.value === type)
|
|
|
|
|
return t ? t.name : ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tagSourceText () {
|
2023-05-17 10:51:52 +08:00
|
|
|
return function (type) {
|
2023-05-29 13:00:28 +08:00
|
|
|
const t = knowledgeBaseSource.find(t => t.value === type)
|
2023-05-17 10:51:52 +08:00
|
|
|
return t ? t.name : ''
|
|
|
|
|
}
|
2023-10-09 11:55:19 +08:00
|
|
|
},
|
|
|
|
|
colorText () {
|
2023-10-27 11:45:58 +08:00
|
|
|
const vm = this
|
2023-10-09 11:55:19 +08:00
|
|
|
return function (color) {
|
2023-10-27 11:45:58 +08:00
|
|
|
const t = vm.knowledgeBaseColor.find(t => t.value === color)
|
|
|
|
|
return t ? t.label : vm.knowledgeBaseColor[0].label
|
2023-10-09 11:55:19 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
colorName () {
|
2023-10-27 11:45:58 +08:00
|
|
|
const vm = this
|
2023-10-09 11:55:19 +08:00
|
|
|
return function (color) {
|
2023-10-27 11:45:58 +08:00
|
|
|
const t = vm.knowledgeBaseColor.find(t => t.value === color)
|
|
|
|
|
return t ? t.name : vm.knowledgeBaseColor[0].name
|
2023-10-09 11:55:19 +08:00
|
|
|
}
|
2023-05-17 10:51:52 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|