前后端全面升级

This commit is contained in:
pycook
2023-07-10 17:42:15 +08:00
parent c444fed436
commit db5ff60aff
629 changed files with 97789 additions and 23995 deletions

View File

@@ -0,0 +1,17 @@
const notice = {
state: {
totalUnreadNum: 0,
appUnreadNum: []
},
mutations: {
SET_TOTAL_UNREAD_NUM: (state, totalUnreadNum) => {
state.totalUnreadNum = totalUnreadNum
},
SET_APP_UNREAD_NUM: (state, appUnreadNum) => {
state.appUnreadNum = appUnreadNum
},
},
actions: {
}
}
export default notice