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.
19 lines
466 B
19 lines
466 B
var fly = require('./request.js')
|
|
module.exports = {
|
|
getIntelligentMessage:getIntelligentMessage,
|
|
userLoginlog:userLoginlog,
|
|
getToken:getToken
|
|
}
|
|
|
|
function getIntelligentMessage(param){
|
|
return fly.get(`message/intelligentMessage/page`,param)
|
|
}
|
|
/**
|
|
*小程序用户登录日志
|
|
*/
|
|
function userLoginlog (para) {
|
|
return fly.post('auth/gov/loginbypassword', para)
|
|
}
|
|
function getToken (para) {
|
|
return fly.post('auth/gov/loginwxmp/loginbywxcode', para)
|
|
}
|