dashboard
repositories
filestore
activity
search
login
admin
/
ys-MT10-app_0506
forked from
交易所/ys-MT10-app_0506
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of http://124.156.157.155:8060/r/~admin/ys-MT10-app_0506
lxf
2025-05-22
8d35986daac1e00e0b02109f45287a6a8c2cb257
[~admin/ys-MT10-app_0506.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;
}
}
}