31 lines
		
	
	
		
			894 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			894 B
		
	
	
	
		
			JavaScript
		
	
	
	
const http = uni.$u.http
 | 
						|
 | 
						|
//首页
 | 
						|
export const userIndex = params =>
 | 
						|
  http.get('/sale/api/wares/get-app-index', { params })
 | 
						|
 | 
						|
//修改头像
 | 
						|
export const updateHead = data =>
 | 
						|
  http.post('/member/api/member/update-head', data)
 | 
						|
 | 
						|
//提货记录列表
 | 
						|
export const pickList = params =>
 | 
						|
  http.get('/activity/api/pick/list', { params })
 | 
						|
 | 
						|
//提货专区列表
 | 
						|
export const pickLogList = params =>
 | 
						|
  http.get('/activity/api/pick/pick-log', { params })
 | 
						|
//植树活动
 | 
						|
export const queryTreeActivity = params =>
 | 
						|
  http.get('/activity/api/sa-tree-order/queryTreeActivity', { params })
 | 
						|
 | 
						|
//创客空间列表
 | 
						|
export const marketList = params =>
 | 
						|
  http.get('/member/api/maker-space/list', { params })
 | 
						|
 | 
						|
export const getTopPeople = params =>
 | 
						|
  http.post('/member/api/member-statistics/topPeople', params)
 | 
						|
 | 
						|
export const getTopAmount = params =>
 | 
						|
  http.post('/member/api/member-statistics/topAmount', params)
 |