dashboard
repositories
filestore
activity
search
login
okjysweb
/
okjys-h5
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
李凌
2025-09-12
0cf2a49d80c8d4ffba2df32f530f498a2c94458e
[okjysweb/okjys-h5.git]
/
src
/
store
/
modules
/
payment.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {
SET_NAV_HEIGHT,
} from "@/store/const.store"
export default {
namespaced: true,
state: {
navHeight: 0
},
mutations: {
[SET_NAV_HEIGHT](state, {height}) {
state.navHeight = height;
}
}
}