You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
324 B
18 lines
324 B
/**
|
|
* 设置api请求的baseURL
|
|
*/
|
|
|
|
let configs = {
|
|
// 请求协议
|
|
protocol : 'http',
|
|
// 请求域名
|
|
host: 'api.lch.3ncto.com.cn',
|
|
// 基础路径
|
|
basePath: '/api2.php'
|
|
}
|
|
|
|
export default {
|
|
baseURL: configs.protocol + '://' + configs.host + configs.basePath,
|
|
// baseURL: '',
|
|
isDev: false
|
|
}
|