12345678910111213141516 |
- import { toRaw } from 'vue';
- import { DictionaryStore } from '/@/stores/dictionary';
- /**
- * @method 获取指定name字典
- */
- export const dictionary = (name: string,key?:string|number|undefined) => {
- const dict = DictionaryStore()
- const dictionary = toRaw(dict.data)
- if(key!=undefined){
- const obj = dictionary[name].find((item:any) => item.value === key)
- return obj?obj.label:''
- }else{
- return dictionary[name]
- }
- }
|