ryy.js
546 Bytes
import request from '../../service/request.js'
import utils from '../../service/utils.js'
export default {
// 获取儿童手环信息
getChild(pages) {
return request.get('/childStay/records/getUserProtect',pages)
},
addRegistration(data) {
return request.post('/childAdopt/registration',data)
},
// 获取历史记录和流程
getHistory(pages) {
return request.get('/childAdopt/registration/caseHistory',pages)
},
// 获取机构
getListRoles(pages) {
return request.get('/system/user/listRoles',pages)
}
}