houzhongjian
2024-12-05 2717813966ced88c6a1635663dd01b502158a1b8
src/views/data/plan/category/CategoryForm.vue
@@ -33,13 +33,13 @@
<script lang="ts" setup>
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import * as CategoryApi from '@/api/data/plan/category'
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
import {CACHE_KEY, useCache, useSessionCache} from '@/hooks/web/useCache'
import { CommonStatusEnum, SystemMenuTypeEnum } from '@/utils/constants'
import { defaultProps, handleTree } from '@/utils/tree'
defineOptions({ name: 'PlanItemCategoryForm' })
const { wsCache } = useCache()
const { wsSessionCache } = useSessionCache()
const { t } = useI18n() // 国际化
const message = useMessage() // 消息弹窗
@@ -114,7 +114,7 @@
  } finally {
    formLoading.value = false
    // 清空,从而触发刷新
    wsCache.delete(CACHE_KEY.ROLE_ROUTERS)
    wsSessionCache.delete(CACHE_KEY.ROLE_ROUTERS)
  }
}