bkui-cli-template-webpack4-saas
Version:
bkui-cli-template-webpack4-saas
27 lines (22 loc) • 437 B
JavaScript
/**
* @file 页面公共请求即每切换 router 时都必须要发送的请求
* @author <%- author %>
*/
import store from '@/store'
const config = {
fromCache: false,
cancelWhenRouteChange: false
}
/**
* 获取 user 信息
*
* @return {Promise} promise 对象
*/
function getUser () {
return store.dispatch('userInfo', config)
}
export default function () {
return Promise.all([
getUser()
])
}