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.
15 lines
328 B
15 lines
328 B
2 years ago
|
var fly = require('./request.js')
|
||
|
module.exports = {
|
||
|
getInvitation:getInvitation,
|
||
|
userLoginlog:userLoginlog,
|
||
|
}
|
||
|
|
||
|
function getInvitation(id){
|
||
|
return fly.get(`app-user/user/ma/v3/getInvitation/${id}`)
|
||
|
}
|
||
|
/**
|
||
|
*小程序用户登录日志
|
||
|
*/
|
||
|
function userLoginlog (para) {
|
||
|
return fly.post('auth/gov/loginbypassword', para)
|
||
|
}
|