19 lines
738 B
JavaScript
19 lines
738 B
JavaScript
/**
|
|
* 项目的配置文件
|
|
*/
|
|
var Config = {
|
|
BaseUrl: 'http://127.0.0.1:3000/api/json', // 测试环境基地址
|
|
// BaseUrl: 'http://47.114.153.249:3000/api/json', // 正式环境地址
|
|
ApiList: {
|
|
index: '/index', // 获取首页
|
|
info: '/info', // 进入详情
|
|
mechanism: '/mechanism', // 获取机构
|
|
mechanismList: '/mechanismList', // 获取机构下面的列表
|
|
type: '/class', // 获取首页顶部的分类
|
|
classList: '/classList', // 获取分类列表
|
|
allModel: '/allModel', // 所有模特
|
|
modelList: '/modelList', // 进入模特的个人主页
|
|
search: '/search', // 搜索接口
|
|
register: '/register', // 用户注册接口
|
|
}
|
|
} |