config.js 377 B

1234567891011121314151617
  1. const config = {
  2. post:"POST",
  3. get:"GET",
  4. SUCCESS:"10000",
  5. page_index:{
  6. home:0,
  7. ai_chat:1,
  8. ai_draw:2,
  9. },
  10. notification:{
  11. login_state_changed:"login_state_changed",
  12. switch_page_index: "switch_page_index",
  13. login_success_goback_after_gotoAI:"login_success_goback_after_gotoAI", // 登录成功返回之后去AI
  14. },
  15. userData:"userData",
  16. };
  17. module.exports = config;