api.js
1.34 KB
module.exports = {
config: "/front/mallApi/configs", //会员配置
login: '/front/userApi/login', // 登录
wxLogin: "/front/userApi/code2session", // wx小程序登录
profile: "/front/userApi/profile", // profile
profile: "/front/userApi/profile", // profile
// 1、这个接口一次查询会返回100个号码。
// 2、后台限制了这个接口从联通获取号码的次数(5)次。多次调用后,如果超过次数,会默认以query = '' 返回结果。相同查询条件的结果会缓存起来,二次查询的结果是相同的。
// 3、建议前台缓存返回的结果,翻页、AABB+组合需要前端自行做正则匹配。匹配结果不足时,可以从缓存中随机抽取号码补齐。
// 4、缓存返回结果的时候做好去重操作
selectNum: "/front/selectNum", // 选号
createOrder: "/front/createOrder", // 下单
/**
* 通用接口
* 请求时 "mode"传"custom"
*/
areaQuery: 'https://api.k.wxpai.cn/bizproxy/kdapi/area', // post 区域查询
// 文件上传
uploadFile: '/common/upload', // 上传图片通用接口(需要后端协同开通用接口,目前没有通用接口)
// uploadFile: "/admin/upload", // 上传图片
wxQrcodeCreate: '/open/wx/qrcode/create', //生成小程序码(需要后端协同开通用接口,目前没有通用接口)
}