19 lines
305 B
JavaScript
19 lines
305 B
JavaScript
class HttpConfig {
|
|
// #ifdef H5
|
|
baseUrl = "/h5-test"
|
|
// #endif
|
|
// #ifdef APP-PLUS
|
|
baseUrl = "http://112.29.103.165:1616/ynuw"
|
|
// #endif
|
|
// 短链
|
|
serviceUrl = {
|
|
login: {
|
|
loginApp: '/app/login/appUserLogin', // app登录
|
|
registerApp: '/register',
|
|
}
|
|
}
|
|
}
|
|
|
|
export default new HttpConfig()
|
|
|