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.
27 lines
765 B
27 lines
765 B
var fly = require('./request.js')
|
|
module.exports = {
|
|
getIntelligentMessage:getIntelligentMessage,
|
|
userLoginlog:userLoginlog,
|
|
getToken:getToken,
|
|
getResidentBaseInfo:getResidentBaseInfo,
|
|
getCommunityHouse:getCommunityHouse
|
|
}
|
|
|
|
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)
|
|
}
|
|
function getResidentBaseInfo (para) {
|
|
return fly.post('actual/base/residentBaseInfo/residentSearch', para)
|
|
}
|
|
function getCommunityHouse (para) {
|
|
return fly.post('actual/base/communityHouse/houseSearch', para)
|
|
}
|