| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <notification-base-list :ExtraListParams="ExtraListParams" :extra-columns="ExtraColumns" :ExtraExportDataOptions="ExtraExportDataOptions" :id="id" />
- </template>
- <script>
- import NotificationBaseList from '@IAM/sections/NotificationBaseList'
- import { getTimeTableColumn } from '@/utils/common/tableColumn'
- export default {
- name: 'SecurityAlertList',
- components: {
- NotificationBaseList,
- },
- props: {
- id: String,
- },
- data () {
- return {
- ExtraListParams: {
- contact_type: 'webconsole',
- topic_type: 'security',
- },
- ExtraColumns: [
- getTimeTableColumn({
- field: 'received_at',
- title: this.$t('system.text_590'),
- }),
- {
- title: this.$t('system.text_308'),
- field: 'content',
- },
- ],
- ExtraExportDataOptions: [
- { label: this.$t('system.text_308'), key: 'content' },
- ],
- }
- },
- }
- </script>
|