43 lines
939 B
JavaScript
43 lines
939 B
JavaScript
/*
|
||
刘川:10.40.92.207
|
||
阮世耀:10.40.92.195
|
||
韩遨宇:10.40.92.253
|
||
*/
|
||
// #ifdef H5
|
||
const baseUrl = "/api"
|
||
// #endif
|
||
// #ifdef APP-PLUS
|
||
// const baseUrl = "http://112.29.103.165:21624"
|
||
// const baseUrl = "http://112.29.103.165:21626"
|
||
// const baseUrl = "http://10.40.92.219:8080"
|
||
// const baseUrl = "http://10.40.92.13:8080"
|
||
const baseUrl = "http://10.40.92.21:8080"
|
||
// #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
|
||
|
||
|
||
// auth层
|
||
let authPath = `${baseUrl}/auth`
|
||
|
||
// 公用服务
|
||
let systemPath = `${baseUrl}/system`
|
||
|
||
// base层
|
||
let basePath = `${baseUrl}/base`
|
||
|
||
export {
|
||
authPath,
|
||
systemPath,
|
||
basePath
|
||
} |