store+统计分析+用户管理

This commit is contained in:
ym1026
2025-09-05 09:26:14 +08:00
parent 1cc916c53c
commit 013a2245f5
15 changed files with 911 additions and 278 deletions

View File

@@ -0,0 +1,17 @@
export default {
namespaced: true,
tate: {
page: 'main', //main or detail
detailType: 'add', // add or edit or view
title: '新增', // 新增 or 查看
type: 'user' // menu or authority role
},
mutations: {
updateState(state, playload) {
Object.entries(playload).forEach((item) => {
const [key, value] = item
state[key] = value
})
}
}
}