mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-08-14 10:11:53 +08:00
多模块重构 12:修改项目名字,按照新的规则
This commit is contained in:
50
yudao-ui-admin/src/store/modules/dict.js
Normal file
50
yudao-ui-admin/src/store/modules/dict.js
Normal file
@@ -0,0 +1,50 @@
|
||||
import { listSimpleDictDatas } from '@/api/system/dict/data'
|
||||
|
||||
const state = {
|
||||
/**
|
||||
* 数据字典 MAP
|
||||
* key:数据字典大类枚举值 dictType
|
||||
* dictValue:数据字典小类数值 {dictValue: '', dictLabel: ''} 的数组
|
||||
*/
|
||||
dictDatas: {}
|
||||
}
|
||||
|
||||
const mutations = {
|
||||
SET_DICT_DATAS: (state, dictDatas) => {
|
||||
state.dictDatas = dictDatas
|
||||
}
|
||||
}
|
||||
|
||||
const actions = {
|
||||
loadDictDatas({ commit }) {
|
||||
listSimpleDictDatas().then(response => {
|
||||
// 如果未加载到数据,则直接返回
|
||||
if (!response || !response.data) {
|
||||
return;
|
||||
}
|
||||
// 设置数据
|
||||
const dictDataMap = {}
|
||||
response.data.forEach(dictData => {
|
||||
// 获得 dictType 层级
|
||||
const enumValueObj = dictDataMap[dictData.dictType]
|
||||
if (!enumValueObj) {
|
||||
dictDataMap[dictData.dictType] = []
|
||||
}
|
||||
// 处理 dictValue 层级
|
||||
dictDataMap[dictData.dictType].push({
|
||||
value: dictData.value,
|
||||
label: dictData.label
|
||||
})
|
||||
})
|
||||
// 存储到 Store 中
|
||||
commit('SET_DICT_DATAS', dictDataMap)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
namespaced: true,
|
||||
state,
|
||||
mutations,
|
||||
actions
|
||||
}
|
Reference in New Issue
Block a user