You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
725 B
JavaScript
18 lines
725 B
JavaScript
const KEY_USER_ID = 'KEY_USER_ID'
|
|
|
|
class Auth {
|
|
|
|
// {"errcode":0,"errmsg":"ok","result":{"nick":"廖一军","unionId":"j7cuUCplZe1ZiiqjQNUUmFwiEiE","avatarUrl":"https://static-legacy.dingtalk.com/media/lALPBDDrhXr716HNAoDNAoA_640_640.png","openId":"iioljiPmZ4RPoOYpkFiSn7IKAiEiE","mobile":"18777396951","stateCode":"86","email":"lyj@hainatravel.com","opisn":"383"}}
|
|
userId = '383'
|
|
username = '廖一军'
|
|
avatarUrl = 'https://static-legacy.dingtalk.com/media/lALPBDDrhXr716HNAoDNAoA_640_640.png'
|
|
stateCode = '86'
|
|
email = 'lyj@hainatravel.com'
|
|
openId = 'iioljiPmZ4RPoOYpkFiSn7IKAiEiE'
|
|
accountList = ['LYJ', 'LYJAH', 'LYJGH']
|
|
permissionList = ['view_chat', 'send_msg']
|
|
|
|
}
|
|
|
|
export default Auth
|