[fix] 清除缓存

This commit is contained in:
醉挽清风 2023-03-24 10:34:35 +08:00
parent 0d6946206f
commit 97978b3cb6
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<template>
<div class="full-screen h-full cursor-pointer flex items-center px-2" @click="handleClean">
<icon :size="18" name="el-icon-delete" />
</div>
</template>
<script setup lang="ts" name="cache">
//
import feedback from "@/utils/feedback";
import {systemCacheClear} from "@/api/setting/system";
const handleClean = async () => {
await feedback.confirm('确认清除系统缓存?')
await systemCacheClear()
}
</script>
<style scoped>
</style>

View File

@ -13,6 +13,9 @@
</div>
</div>
<div class="flex">
<div class="navbar-item" v-if="!isMobile">
<cache />
</div>
<div class="navbar-item" v-if="!isMobile">
<full-screen />
</div>
@ -37,6 +40,7 @@ import FullScreen from './full-screen.vue'
import UserDropDown from './user-drop-down.vue'
import Setting from '../setting/index.vue'
import MultipleTabs from './multiple-tabs.vue'
import Cache from './cache.vue'
import useSettingStore from '@/stores/modules/setting'
const appStore = useAppStore()