From 15335fdc5b357676bc1a7452985c7adca4bc2f9e Mon Sep 17 00:00:00 2001
From: Jay <csj123456>
Date: 星期三, 22 一月 2025 17:24:29 +0800
Subject: [PATCH] 统计方式字段可以为空值

---
 src/views/data/ind/category/CategoryForm.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/data/ind/category/CategoryForm.vue b/src/views/data/ind/category/CategoryForm.vue
index d4bd86c..40cd2fb 100644
--- a/src/views/data/ind/category/CategoryForm.vue
+++ b/src/views/data/ind/category/CategoryForm.vue
@@ -33,13 +33,13 @@
 <script lang="ts" setup>
   import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
   import * as CategoryApi from '@/api/data/ind/category'
-  import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
+  import {CACHE_KEY, useSessionCache} from '@/hooks/web/useCache'
   import { CommonStatusEnum, SystemMenuTypeEnum } from '@/utils/constants'
   import { defaultProps, handleTree } from '@/utils/tree'
 
   defineOptions({ name: 'IndItemCategoryForm' })
 
-  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)
     }
   }
 

--
Gitblit v1.9.3