|
@@ -5,37 +5,38 @@ const state = {
|
|
|
apiProxy: {
|
|
|
tesApi: 'api-tes', // 托尔斯视频拉流服务
|
|
|
wazxApi: 'api-wazx', // 网安中心
|
|
|
+ staticApi: 'api-static', // 静态资源代理
|
|
|
},
|
|
|
userInfo: null
|
|
|
}
|
|
|
|
|
|
const getters = {
|
|
|
- isLogin(state) {
|
|
|
+ isLogin(state: any) {
|
|
|
return localStorage.getItem('sc_token')
|
|
|
}
|
|
|
}
|
|
|
|
|
|
const mutations = {
|
|
|
- SET_USER_INFO(state, data) {
|
|
|
+ SET_USER_INFO(state: any, data: any) {
|
|
|
state.userInfo = data
|
|
|
}
|
|
|
}
|
|
|
|
|
|
const actions = {
|
|
|
- LOAD_USER_INFO({ commit }, refresh = false) {
|
|
|
+ LOAD_USER_INFO({ commit }: any, refresh = false) {
|
|
|
return new Promise((resolve, reject) => {
|
|
|
if (refresh || !state.userInfo) {
|
|
|
- api.default.getUserInfo().then(res => {
|
|
|
+ api.default.getUserInfo().then((res: any) => {
|
|
|
commit('SET_USER_INFO', res.userInfo)
|
|
|
resolve(res.userInfo)
|
|
|
}).catch(() => {
|
|
|
})
|
|
|
} else {
|
|
|
- resolve()
|
|
|
+ resolve(null)
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- EXIT_LOGIN({ commit }) {
|
|
|
+ EXIT_LOGIN({ commit }: any) {
|
|
|
ElMessageBox.confirm('确定进行[退出]操作?', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|