From 242c94723b525b38afc12ef639d49f2e6c4d6993 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Thu, 19 Sep 2024 00:50:10 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=20dict=20function=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 6 +++--- src/views/setting/dictionary/index.vue | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 2433fa2..4e0fb32 100644 --- a/package.json +++ b/package.json @@ -40,9 +40,9 @@ "dev": "vite --mode dev --port 9980", "dev:test": "vite --mode test", "dev:prod": "vite --mode prod", - "build": "vue-tsc --noEmit && vite build --mode prod", - "build:dev": "vue-tsc --noEmit && vite build --mode dev", - "build:test": "vue-tsc --noEmit && vite build --mode test", + "build": "vite build --mode prod", + "build:dev": "vite build --mode dev", + "build:test": "vite build --mode test", "preview": "vite preview --port 9981", "lint": "eslint . && vue-tsc --noEmit", "lint:fix": "eslint . --fix", diff --git a/src/views/setting/dictionary/index.vue b/src/views/setting/dictionary/index.vue index 243f758..fbc0d41 100644 --- a/src/views/setting/dictionary/index.vue +++ b/src/views/setting/dictionary/index.vue @@ -3,13 +3,15 @@ import type { DataTableColumns } from 'naive-ui' import CopyText from '@/components/custom/CopyText.vue' import { useBoolean } from '@/hooks' import { fetchDictList } from '@/service' -import { getDictByNet } from '@/utils' +import { useDictStore } from '@/store' import { NButton, NFlex, NPopconfirm } from 'naive-ui' import DictModal from './components/DictModal.vue' const { bool: dictLoading, setTrue: startDictLoading, setFalse: endDictLoading } = useBoolean(false) const { bool: contentLoading, setTrue: startContentLoading, setFalse: endContentLoading } = useBoolean(false) +const { getDictByNet } = useDictStore() + const dictRef = ref>() const dictContentRef = ref>()