2023-12-20 15:15:23 +08:00
|
|
|
|
/*
|
|
|
|
|
|
刘川:10.40.92.207
|
|
|
|
|
|
阮世耀:10.40.92.195
|
|
|
|
|
|
韩遨宇:10.40.92.253
|
|
|
|
|
|
*/
|
2023-12-24 14:19:53 +08:00
|
|
|
|
// #ifdef H5
|
|
|
|
|
|
const baseUrl = "/api"
|
|
|
|
|
|
// #endif
|
|
|
|
|
|
// #ifdef APP-PLUS
|
|
|
|
|
|
const baseUrl = "http://112.29.103.165:21624"
|
|
|
|
|
|
// #endif
|
|
|
|
|
|
// // #ifdef H5
|
|
|
|
|
|
// authPath = '/api/auth'
|
|
|
|
|
|
// systemPath = '/api/system'
|
|
|
|
|
|
// basePath = '/api/base'
|
|
|
|
|
|
// materialPath = '/api/material'
|
|
|
|
|
|
// // #endif
|
|
|
|
|
|
// // #ifdef APP-PLUS
|
|
|
|
|
|
// authPath = 'http://112.29.103.165:21624/auth'
|
|
|
|
|
|
// systemPath = 'http://112.29.103.165:21624/system'
|
|
|
|
|
|
// basePath = 'http://112.29.103.165:21624/base'
|
|
|
|
|
|
// materialPath = '/material
|
|
|
|
|
|
// // #endif
|
|
|
|
|
|
|
2023-12-20 15:15:23 +08:00
|
|
|
|
|
|
|
|
|
|
// auth层
|
2023-12-24 14:19:53 +08:00
|
|
|
|
let authPath = `${baseUrl}/auth`
|
2023-12-20 15:15:23 +08:00
|
|
|
|
|
|
|
|
|
|
// 公用服务
|
2023-12-24 14:19:53 +08:00
|
|
|
|
let systemPath = `${baseUrl}/system`
|
2023-12-20 15:15:23 +08:00
|
|
|
|
|
|
|
|
|
|
// base层
|
2023-12-24 14:19:53 +08:00
|
|
|
|
let basePath = `${baseUrl}/base`
|
2023-12-20 15:15:23 +08:00
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
|
authPath,
|
|
|
|
|
|
systemPath,
|
|
|
|
|
|
basePath
|
|
|
|
|
|
}
|