guanqb
2024-01-02 432456dea4e9f370f76a42f7b341596012c3c38f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-12-27 09:33:01
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-04-02 12:18:26
 * @FilePath: \srs-police-affairs\src\store\modules\user.js
 * @Description: 
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
 */
 
const user = {
    state: {
        examId: '',
        isShowVideoDialog: ''
    },
    actions: {
 
    },
    mutations: {
        SET_EXAMID: (state, active) => {
            state.examId = active
        },
 
        SET_ISSHOWVIDEODIALOG: (state, active) => {
            state.isShowVideoDialog = active
        },
    }
}
 
export default user