Blame view

src/layouts/default/header/components/ErrorAction.vue 1.21 KB
vben authored
1
2
3
4
5
6
7
<template>
  <Tooltip
    :title="t('layout.header.tooltipErrorLog')"
    placement="bottom"
    :mouseEnterDelay="0.5"
    @click="handleToErrorList"
  >
Vben authored
8
    <Badge :count="getCount" :offset="[0, 10]" :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
  import { useI18n } from '/@/hooks/web/useI18n';
Vben authored
19
  import { useErrorLogStore } from '/@/store/modules/errorLog';
vben authored
20
  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

    setup() {
      const { t } = useI18n();
      const { push } = useRouter();
Vben authored
31
      const errorLogStore = useErrorLogStore();
vben authored
32
Vben authored
33
      const getCount = computed(() => errorLogStore.getErrorLogListCount);
vben authored
34
35
36

      function handleToErrorList() {
        push(PageEnum.ERROR_LOG_PAGE).then(() => {
Vben authored
37
          errorLogStore.setErrorLogListCount(0);
vben authored
38
39
40
41
42
43
44
45
46
47
48
        });
      }

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