localGetter.js 187 Bytes
Newer Older
leiqingsong's avatar
leiqingsong committed
1
export function getUserId() {
xulili's avatar
xulili committed
2 3 4 5 6 7 8
    let userInfo = localStorage.getItem('user')
    if(userInfo){
        return JSON.parse(userInfo).userId || '';
    }else{
        return ''
    }
    
leiqingsong's avatar
leiqingsong committed
9
}