1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // 系统全局字典
- import useDictStore from '@/stores/modules/dict'
- import { getDictsApi } from '@/api/modules/system/dictData'
- import { ref, toRefs } from 'vue'
- /**
- * 获取字典数据
- */
- export function useDict(...args: any[]) {
- const res = ref<any>({})
- return (() => {
- args.forEach(dictType => {
- res.value[dictType] = []
- const dicts = useDictStore().getDict(dictType)
- if (dicts) {
- res.value[dictType] = dicts
- } else {
- getDictsApi(dictType).then(resp => {
- res.value[dictType] = resp.data.map((p: any) => ({
- label: p.dictLabel,
- value: p.dictValue,
- elTagType: p.listClass,
- elTagClass: p.cssClass
- }))
- useDictStore().setDict(dictType, res.value[dictType])
- })
- }
- })
- return toRefs(res.value)
- })()
- }
- /**
- * @description:用户性别
- */
- export const genderType = [
- { label: '男', value: 1 },
- { label: '女', value: 2 }
- ]
- /**
- * @description:用户状态
- */
- export const userStatus = [
- { label: '启用', value: 1, tagType: 'success' },
- { label: '禁用', value: 0, tagType: 'danger' }
- ]
|