mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
fix: import error
This commit is contained in:
parent
7da454563b
commit
dc3563969b
58
src/store/dict.ts
Normal file
58
src/store/dict.ts
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
import { fetchDictList } from '@/service'
|
||||||
|
import { session } from '@/utils'
|
||||||
|
|
||||||
|
export const useDictStore = defineStore('dict-store', {
|
||||||
|
state: () => {
|
||||||
|
return {
|
||||||
|
dictMap: {} as DictMap,
|
||||||
|
isInitDict: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
async dict(code: string) {
|
||||||
|
// 调用前初始化
|
||||||
|
if (!this.dictMap) {
|
||||||
|
this.initDict()
|
||||||
|
}
|
||||||
|
|
||||||
|
const targetDict = await this.getDict(code)
|
||||||
|
|
||||||
|
return {
|
||||||
|
data: () => targetDict,
|
||||||
|
enum: () => Object.fromEntries(targetDict.map(({ value, label }) => [value, label])),
|
||||||
|
valueMap: () => Object.fromEntries(targetDict.map(({ value, ...data }) => [value, data])),
|
||||||
|
labelMap: () => Object.fromEntries(targetDict.map(({ label, ...data }) => [label, data])),
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async getDict(code: string) {
|
||||||
|
const isExist = Reflect.has(this.dictMap, code)
|
||||||
|
|
||||||
|
if (isExist) {
|
||||||
|
return this.dictMap[code]
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return await this.getDictByNet(code)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async getDictByNet(code: string) {
|
||||||
|
const { data, isSuccess } = await fetchDictList(code)
|
||||||
|
if (isSuccess) {
|
||||||
|
Reflect.set(this.dictMap, code, data)
|
||||||
|
// 同步至session
|
||||||
|
session.set('dict', this.dictMap)
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
throw new Error(`Failed to get ${code} dictionary from network, check ${code} field or network`)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
initDict() {
|
||||||
|
const dict = session.get('dict')
|
||||||
|
if (dict) {
|
||||||
|
Object.assign(this.dictMap, dict)
|
||||||
|
}
|
||||||
|
this.isInitDict = true
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
@ -3,6 +3,7 @@ import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
|||||||
|
|
||||||
export * from './app/index'
|
export * from './app/index'
|
||||||
export * from './auth'
|
export * from './auth'
|
||||||
|
export * from './dict'
|
||||||
export * from './router'
|
export * from './router'
|
||||||
export * from './tab'
|
export * from './tab'
|
||||||
|
|
||||||
|
@ -1,67 +0,0 @@
|
|||||||
import { fetchDictList } from '@/service'
|
|
||||||
import { session } from '@/utils'
|
|
||||||
|
|
||||||
export const dictMap: DictMap = {}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取与给定代码对应的字典对象
|
|
||||||
*
|
|
||||||
* @param code - 字典编码
|
|
||||||
* @return 包含字典列表、值映射字典和标签映射字典的对象
|
|
||||||
*/
|
|
||||||
export async function dict(code: string) {
|
|
||||||
const targetDict = await getDict(code)
|
|
||||||
|
|
||||||
return {
|
|
||||||
data: () => targetDict,
|
|
||||||
enum: () => Object.fromEntries(targetDict.map(({ value, label }) => [value, label])),
|
|
||||||
valueMap: () => Object.fromEntries(targetDict.map(({ value, ...data }) => [value, data])),
|
|
||||||
labelMap: () => Object.fromEntries(targetDict.map(({ label, ...data }) => [label, data])),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据字典编码获取字典数据
|
|
||||||
* 如果本地有缓存,则返回缓存数据,否则通过网络请求获取数据
|
|
||||||
*
|
|
||||||
* @param code - 字典编码
|
|
||||||
* @return 字典数据
|
|
||||||
*/
|
|
||||||
export async function getDict(code: string) {
|
|
||||||
const isExist = Reflect.has(dictMap, code)
|
|
||||||
|
|
||||||
if (isExist) {
|
|
||||||
return dictMap[code]
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return await getDictByNet(code)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 通过网络请求获取字典数据
|
|
||||||
*
|
|
||||||
* @param code - 字典编码
|
|
||||||
* @return 字典数据
|
|
||||||
*/
|
|
||||||
export async function getDictByNet(code: string) {
|
|
||||||
const { data, isSuccess } = await fetchDictList(code)
|
|
||||||
if (isSuccess) {
|
|
||||||
Reflect.set(dictMap, code, data)
|
|
||||||
// 同步至session
|
|
||||||
session.set('dict', dictMap)
|
|
||||||
return data
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
throw new Error(`Failed to get ${code} dictionary from network, check ${code} field or network`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function initDict() {
|
|
||||||
const dict = session.get('dict')
|
|
||||||
if (dict) {
|
|
||||||
Object.assign(dictMap, dict)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
initDict()
|
|
@ -1,5 +1,4 @@
|
|||||||
|
export * from './storage'
|
||||||
export * from './array'
|
export * from './array'
|
||||||
export * from './dict'
|
|
||||||
export * from './i18n'
|
export * from './i18n'
|
||||||
export * from './icon'
|
export * from './icon'
|
||||||
export * from './storage'
|
|
||||||
|
@ -33,19 +33,19 @@ function handleValidateClick() {
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
<n-h2>回调value</n-h2>
|
<n-h2>回调value</n-h2>
|
||||||
<pre class="bg-#eee">
|
<pre class="bg-#eee:30">
|
||||||
{{ cbValue }}
|
{{ cbValue }}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<n-h2>回调option</n-h2>
|
<n-h2>回调option</n-h2>
|
||||||
<pre class="bg-#eee">
|
<pre class="bg-#eee:30">
|
||||||
{{ cbOption }}
|
{{ cbOption }}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<n-h2>回调pathValues</n-h2>
|
<n-h2>回调pathValues</n-h2>
|
||||||
<pre class="bg-#eee">
|
<pre class="bg-#eee:30">
|
||||||
{{ cbPathValues }}
|
{{ cbPathValues }}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { fetchDictList } from '@/service'
|
import { fetchDictList } from '@/service'
|
||||||
import { dict } from '@/utils/dict'
|
import { useDictStore } from '@/store'
|
||||||
|
|
||||||
|
const { dict } = useDictStore()
|
||||||
|
|
||||||
const dictKey = ref('')
|
const dictKey = ref('')
|
||||||
const options = ref()
|
const options = ref()
|
||||||
@ -88,7 +90,7 @@ const enumLabel = computed(() => {
|
|||||||
</n-button>
|
</n-button>
|
||||||
</n-flex>
|
</n-flex>
|
||||||
|
|
||||||
<pre class="bg-#eee">
|
<pre class="bg-#eee:30">
|
||||||
{{ data }}
|
{{ data }}
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ function handleUpdate(data: any) {
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template #2>
|
<template #2>
|
||||||
<pre class="bg-#eee">
|
<pre class="bg-#eee:30">
|
||||||
{{ msg }}
|
{{ msg }}
|
||||||
</pre>
|
</pre>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user