初始化

This commit is contained in:
hezhidong
2024-11-05 17:43:01 +08:00
parent 2a10e37c10
commit 4e1140419a
97 changed files with 8700 additions and 89 deletions
+42
View File
@@ -0,0 +1,42 @@
import { createStore } from 'vuex'
const store = createStore({
state: {
name: '访客预约系统',
stateEnum: {
0: {
statusName:'待审核',
className: 'status',
statusText: '您的来访预约还未审核,请耐心等待',
status: 0
},
1: {
statusName: '已通过',
className: 'pass',
statusText: '预约审核通过',
status: 1
},
2: {
statusName:'未通过',
className: 'refuse',
statusText: '预约审核已拒绝',
status: 2
}
}
},
getters: {
},
mutations: {
},
actions: {
},
modules: {
}
})
export default store