问题描述
大队、分场的值存在sql表里,需后台查询得出,需要在系统中作为全局变量保存通用
解决方案
在store.js中挂载到state上,以供所有页面使用
master.vue
methods: {
async getDicValue () { // 分场-生产区-大队
let dic = await this.$api.home.getFQList()
this.$store.commit('setDic', dic)
}
},
created () {
this.getDicValue()
}
store.js
setDic (state, _dic) { // 字典值
console.log('_dic', _dic)
state.dic = _dic
}