给定默认值

This commit is contained in:
aixianling
2022-05-09 10:13:53 +08:00
parent e8f736fce8
commit 995ac78a85
4 changed files with 8 additions and 18 deletions

View File

@@ -3,6 +3,7 @@ import Vuex from 'vuex'
import perState from 'vuex-persistedstate'
import http from '../common/axios'
import CryptoJS from '../utils/crypto-js'
import action from "../common/action";
Vue.use(Vuex)
let agentSignURL = "", apiList = []
@@ -210,7 +211,7 @@ const store = new Vuex.Store({
return http.post("/admin/user/detail-phone").then(res => {
if (res?.code == 0) {
state.commit('setUser', res.data)
this.$action.getGridInfo()
action.getGridInfo()
}
})
},