| 12345678910 |
- const TO_LOGIN_PAGE = 1
- const errorCode = new Map()
- errorCode.set('E40001', {todo: TO_LOGIN_PAGE, message: 'accessToken刷新失败'})
- errorCode.set('E40002', {todo: TO_LOGIN_PAGE, message: 'refreshToken刷新失败'})
- errorCode.set('E40003', {todo: TO_LOGIN_PAGE, message: 'refreshToken已失效'})
- errorCode.set('E40004', {todo: TO_LOGIN_PAGE, message: '用户尚未登录'})
- errorCode.set('E40005', {todo: TO_LOGIN_PAGE, message: '用户已登录'})
- export default errorCode
|