新生报到移动端V1.0

This commit is contained in:
2025-07-16 17:44:45 +08:00
commit 50d2d6a12d
1058 changed files with 146425 additions and 0 deletions

11
config/baseUrl.js Normal file
View File

@@ -0,0 +1,11 @@
let BASE_URL = ''
let TIME_OUT = 1000000
if (process.env.NODE_ENV === 'development') {
// BASE_URL = 'http://localhost:8085'
BASE_URL = 'http://zhxg.gxsdxy.cn/prod_api'
} else if (process.env.NODE_ENV === 'production') {
BASE_URL = '/prod_zs'
} else {
BASE_URL = '/prod_zs' /*http://zhxg.gxsdxy.cn/prod_api*/
}
export { BASE_URL, TIME_OUT }