fix: dict error import

This commit is contained in:
chansee97 2024-07-12 13:35:11 +08:00
parent 0e9bf396f3
commit 309d723e43
2 changed files with 2 additions and 3 deletions

View File

@ -2,3 +2,4 @@ export * from './icon'
export * from './storage'
export * from './array'
export * from './i18n'
export * from './dict'

View File

@ -4,7 +4,7 @@ import { NButton, NFlex, NPopconfirm } from 'naive-ui'
import DictModal from './components/DictModal.vue'
import { fetchDictList } from '@/service'
import { useBoolean } from '@/hooks'
import { useDictStore } from '@/store'
import { getDictByNet } from '@/utils'
import CopyText from '@/components/custom/CopyText.vue'
const { bool: dictLoading, setTrue: startDictLoading, setFalse: endDictLoading } = useBoolean(false)
@ -20,8 +20,6 @@ onMounted(() => {
const dictData = ref<Entity.Dict[]>([])
const dictContentData = ref<Entity.Dict[]>([])
const { getDictByNet } = useDictStore()
async function getDictList() {
startDictLoading()
const { data, isSuccess } = await fetchDictList()