SmartStorage/public.js

43 lines
939 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
刘川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
}