field.js 448 B

123456789101112131415161718192021
  1. module.exports = {
  2. // 普通用户状态
  3. userType:1,
  4. // 管理员账户
  5. adminType:2,
  6. // 用户表正常状态
  7. userNomalState: 1,
  8. // 用户表封禁状态
  9. userFreezeState:2,
  10. // 用户注销状态
  11. userStopState: 3,
  12. // 国内航班
  13. routeType_domestic:1,
  14. // 国际航班
  15. routeType_international:2,
  16. // 国内城市
  17. cityType_domestic:1,
  18. // 国际城市
  19. cityType_international:2,
  20. }