Blame view

src/layouts/default/header/components/ErrorAction.vue 1.18 KB
vben authored
1
2
3
4
5
6
7
8
<template>
  <Tooltip
    :title="t('layout.header.tooltipErrorLog')"
    placement="bottom"
    :mouseEnterDelay="0.5"
    @click="handleToErrorList"
  >
    <Badge :count="getCount" :offset="[0, 10]" dot :overflowCount="99">
9
      <Icon icon="ion:bug-outline" />
vben authored
10
11
12
13
14
15
    </Badge>
  </Tooltip>
</template>
<script lang="ts">
  import { defineComponent, computed } from 'vue';
  import { Tooltip, Badge } from 'ant-design-vue';
16
17
  import Icon from '/@/components/Icon';
vben authored
18
19
20
  import { useI18n } from '/@/hooks/web/useI18n';
  import { errorStore } from '/@/store/modules/error';
  import { PageEnum } from '/@/enums/pageEnum';
21
vben authored
22
23
24
25
  import { useRouter } from 'vue-router';

  export default defineComponent({
    name: 'ErrorAction',
26
    components: { Icon, Tooltip, Badge },
vben authored
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

    setup() {
      const { t } = useI18n();
      const { push } = useRouter();

      const getCount = computed(() => {
        return errorStore.getErrorListCountState;
      });

      function handleToErrorList() {
        push(PageEnum.ERROR_LOG_PAGE).then(() => {
          errorStore.commitErrorListCountState(0);
        });
      }

      return {
        t,
        getCount,
        handleToErrorList,
      };
    },
  });
</script>