20 lines
321 B
JavaScript
20 lines
321 B
JavaScript
|
|
/*
|
|||
|
|
刘川:10.40.92.207
|
|||
|
|
阮世耀:10.40.92.195
|
|||
|
|
韩遨宇:10.40.92.253
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
// auth层
|
|||
|
|
const authPath = 'http://192.168.0.14:21624/auth'
|
|||
|
|
|
|||
|
|
// 公用服务
|
|||
|
|
const systemPath = 'http://192.168.0.14:21624/system'
|
|||
|
|
|
|||
|
|
// base层
|
|||
|
|
const basePath = 'http://192.168.0.14:21624/base'
|
|||
|
|
|
|||
|
|
export {
|
|||
|
|
authPath,
|
|||
|
|
systemPath,
|
|||
|
|
basePath
|
|||
|
|
}
|