mine concerns 8.15

This commit is contained in:
2020-08-15 17:16:11 +08:00
parent 7deb5d312b
commit df52535848
11 changed files with 377 additions and 227 deletions

View File

@@ -18,7 +18,8 @@ const store = new Vuex.Store({
loadmore: {}, // 下拉加载返回的数据
hasLogin: false, // 登录状态
token: "", // 储存token
showLoginModel: false, // 登录框
showLoginModel: false, // 登录框
question: {}, // 帮助与反馈
},
getters: {
getOrderAddress(state) {
@@ -75,6 +76,9 @@ const store = new Vuex.Store({
},
setLoadMore(state, info) {
state.loadmore = info;
},
setQuestion(state, question) {
state.question = question;
}
}
})