35 lines
898 B
JavaScript
35 lines
898 B
JavaScript
/* ========================================================
|
|
小程序配置文件
|
|
======================================================== */
|
|
// 域名
|
|
var host = ''
|
|
var hostGo = ''
|
|
|
|
// if (_NODE_) {
|
|
host = 'https://love.ufutx.com/api' // 线上环境
|
|
hostGo = 'https://love.ufutx.com/go/api' // 线上环境
|
|
// host = 'http://health.ufutx.net/api' // 本地环境
|
|
// hostGo = 'http://health.ufutx.net/go/api' // 本地环境
|
|
// } else {
|
|
// host = 'https://love.ufutx.com/api' // 线上环境
|
|
// }
|
|
|
|
export const service = {
|
|
host: `${host}`,
|
|
// go语言接口
|
|
hostGo: `${hostGo}`,
|
|
// 登录接口
|
|
login: `${host}/login/wechat`,
|
|
|
|
// 绑定手机号
|
|
bindMobile: `${host}/bind/mobile`,
|
|
// 保存资料
|
|
saveBaseData: `${host}/user/info`,
|
|
// 获取手机号验证码
|
|
getMobileCode: `${host}/mobile/code`
|
|
}
|
|
|
|
export default {
|
|
service
|
|
}
|