15 lines
		
	
	
		
			471 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			471 B
		
	
	
	
		
			JavaScript
		
	
	
	
 | 
						|
const http = uni.$u.http
 | 
						|
 | 
						|
 | 
						|
// 登录
 | 
						|
export const queryBonusTotal = (data) => http.post('/bonus/api/bonus/query-bonus-total', data)
 | 
						|
//新人礼包详情
 | 
						|
export const getGiftPack = (data) => http.post('/activity/api/people-service/getGiftPack', data)
 | 
						|
 | 
						|
//注册等级下拉选
 | 
						|
export const getGradeList = (params) => http.get('/system/api/grade/list', {
 | 
						|
	params
 | 
						|
})
 | 
						|
//三单轮次
 | 
						|
export const nextRound = (params) => http.get('/member/api/market-news/round-his', {params}) |