ufutx_love_mp/src/config.js
2024-09-29 11:01:39 +08:00

59 lines
1.5 KiB
JavaScript

/* ========================================================
小程序配置文件
======================================================== */
// 域名
var host = ''
var hostGo = ''
// if (_NODE_) {
// host = 'https://love.ufutx.com/api' // 线上环境
hostGo = 'https://love.ufutx.com/go/api' // 线上环境
// host = 'http://love.ufutx.net/go/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`,
// 绑定手机号
bindMobile: `${host}/bind/mobile`,
// 保存资料
saveBaseData: `${host}/user/info`,
// 获取手机号验证码
getMobileCode: `${host}/mobile/code`,
// 上传图片
image_upload: `${host}/uploads`,
// 用户资料
profile: `${host}/profile`,
// 用户
user: `${host}/user`,
// 添加好友
addFriend: `${host}/friend/users`,
// 关注某人
follow: `${host}/follow/users`,
// 我的粉丝
followers: `${host}/followers`,
// 我的好友
friends: `${host}/friends`,
// 我的关注
followings: `${host}/followings`,
// 举报标签
reportLabel: `${host}/moment/complaint/labels`,
// 举报动态
complaints: `${host}/complaint`,
// 话题列表?
moment: `${host}/moment`,
// 动态列表
moments: `${host}/moments`
}
export default {
service
}