enilu / web-flash

web-flash -- Admin Framework and Mobile Website Based on Spring Boot and Vue.js
http://webflash.enilu.cn
MIT License
1.29k stars 363 forks source link

语言切换bug #65

Closed initchen closed 4 years ago

initchen commented 4 years ago

我在测试使用cms的文章编辑功能的时候, 发现编辑器不能根据系统动态切换语言, 我看到public目录tinymec下是有中文语言包的, src/views/cms/article/edit.js里也是有根据语言切换的, 说明是语言切换出了问题, 果然打开控制台切换语言发现vuex报错了, 去官方vue-admin-template找到vuex切换语言是不报错的, 排查了下是因为src/store/modules/app.js的actions少了setLanguage方法 image 然后src/components/LangSelect/index.vue文件的this.$store.dispatch('setLanguage', lang)改为this.$store.dispatch('app/setLanguage', lang) image