SmartStorage/public.js

43 lines
939 B
JavaScript
Raw Normal View History

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
2024-01-04 15:13:09 +08:00
// const baseUrl = "http://112.29.103.165:21624"
2024-03-13 17:55:34 +08:00
// const baseUrl = "http://112.29.103.165:21626"
// const baseUrl = "http://10.40.92.219:8080"
2024-01-08 17:41:15 +08:00
// const baseUrl = "http://10.40.92.13:8080"
2024-03-13 17:55:34 +08:00
const baseUrl = "http://10.40.92.21:8080"
2023-12-24 14:19:53 +08:00
// #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
}