mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 16:46:19 +08:00
48 lines
1.2 KiB
Vue
48 lines
1.2 KiB
Vue
<template>
|
|
<Tooltip
|
|
:title="t('layout.header.tooltipErrorLog')"
|
|
placement="bottom"
|
|
:mouseEnterDelay="0.5"
|
|
@click="handleToErrorList"
|
|
>
|
|
<Badge :count="getCount" :offset="[0, 10]" dot :overflowCount="99">
|
|
<BugOutlined />
|
|
</Badge>
|
|
</Tooltip>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent, computed } from 'vue';
|
|
import { Tooltip, Badge } from 'ant-design-vue';
|
|
import { useI18n } from '/@/hooks/web/useI18n';
|
|
import { BugOutlined } from '@ant-design/icons-vue';
|
|
import { errorStore } from '/@/store/modules/error';
|
|
import { PageEnum } from '/@/enums/pageEnum';
|
|
import { useRouter } from 'vue-router';
|
|
|
|
export default defineComponent({
|
|
name: 'ErrorAction',
|
|
components: { BugOutlined, Tooltip, Badge },
|
|
|
|
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>
|