shuishen
2021-12-14 dcbda98765ffa9e8066330502379fafbf2a750b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const popupParams = {
    state: {
        popupBgUrl: null,
        pupupQRUrl: null
    },
    mutations: {
        SET_POPUPBGURL (state, popupBgUrl) {
            state.popupBgUrl = popupBgUrl
        },
        SET_POPUPQRURL (state, pupupQRUrl) {
            state.pupupQRUrl = pupupQRUrl
        }
    },
    actions: {
 
    }
}
 
export default popupParams