Blame view

apis/modules/ryy.js 546 Bytes
1f3f2378   起风了   我的第一次
1
2
3
4
5
6
7
8
9
  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)

dabbdb03   “DataPlanet”   111
10
11
12
13
  	},

  	// 获取历史记录和流程

  	getHistory(pages) {

  		return request.get('/childAdopt/registration/caseHistory',pages)

8eed5287   “DataPlanet”   11
14
15
16
17
  	},

  	// 获取机构

  	getListRoles(pages) {

  		return request.get('/system/user/listRoles',pages)

1f3f2378   起风了   我的第一次
18
19
  	}

  }