| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //
- // config.h
- // RA TradeFiling
- //
- // Created by Rui Zhang on 11/13/20.
- //
- #ifndef config_h
- #define config_h
- //连接超时
- #define JSON_TIMEOUT 60
- //#define fake_data false
- #ifdef DEBUG
- // #define test_server
- #define fake_data false
- #else
- #define fake_data false
- # endif
- #ifdef test_server
- #define BASE_URL @"http://192.168.0.161/ACE_ISF_NEW"
- #else
- #define BASE_URL @"https://ra.united-us.net/doc/bk"
- #endif
- // 接口定义
- #define URL_LOGIN BASE_URL@"/loginMobile.php"
- #define URL_CHANGE_PASS BASE_URL@"/loginMobile.php"
- #define URL_LOGOUT BASE_URL@"/loginMobile.php"
- #define URL_RETRIEVE_PASS BASE_URL@"/loginMobile.php"
- #define URL_SIGNUP BASE_URL@"/loginMobile.php"
- #define URL_HOME BASE_URL@"/mobileMain.php"
- #define URL_SEARCH_RESULT BASE_URL@"/resultMobile.php"
- #define URL_PRIVACY @"https://www.united-us.net/privacy.html"
- #define URL_ERR_LOG @""
- #define URL_REQUEST_DETAIL BASE_URL@"/resultMobile.php"
- // commoneditor 图片上传url
- #define URL_UPLOAD_IMG @""
- #define URL_SAVE_EDITOR BASE_URL@"/editorMobile.php"
- #define URL_EDIT BASE_URL@"/editorMobile.php"
- #define URL_CADEDATE BASE_URL@"/resultMobile.php"
- //#define URL_SAVE_PANEL BASE_URL@"/main_new_29.php"
- //
- //
- //#define URL_HISTORY BASE_URL@"/main_new_29.php"
- //
- //#define URL_REQUEST_COUNT BASE_URL@"/main_new_29.php"
- //#define URL_REQUEST_RECORDS BASE_URL@"/main_new_29.php"
- //
- //#define URL_ANNOUNCEMENTS BASE_URL@"/mobile_news.php"
- //#define URL_NEWS BASE_URL@"/mobile_news.php"
- //#define URL_LOCATIONS BASE_URL@"/mobile_news26.php"
- //#define URL_PUSH BASE_URL@"/main_new_29.php"
- //#define URL_KPI BASE_URL@"/main_new_29.php"
- //
- //#define URL_SEND_COMM_EMAIL BASE_URL@"/main_new_29.php"
- //
- //// 2019.1.4
- //#define URL_UPLOAD_SQL BASE_URL@"/main_new_29.php"
- //#define URL_SAVE_RESULT BASE_URL@"/main_new_29.php"
- //2020.01.09
- #endif /* config_h */
|