站点选择下拉框的数据获取、存储处理逻辑更新,解决因为多层router-view嵌套,二级路由以上页面不会被缓存的而导致单站监控页面站点选择下拉框闪烁的问题

This commit is contained in:
白菜
2025-06-22 22:20:34 +08:00
parent dea617d853
commit 02d3ab04bb
5 changed files with 64 additions and 16 deletions

12
src/store/modules/ems.js Normal file
View File

@ -0,0 +1,12 @@
const ems = {
state: {
zdList:[]
},
mutations: {
SET_ZD_LIST(state, list) {
state.zdList = list || []
}
},
}
export default ems