18 lines
		
	
	
		
			707 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			707 B
		
	
	
	
		
			JavaScript
		
	
	
	
| const http = uni.$u.http
 | |
| 
 | |
| //架构上方会员等级图标
 | |
| export const getAvarerInfo = (params) => http.get('/member/api/member-structure/get-avatar-info', {params})
 | |
| 
 | |
| //结算期数下拉选
 | |
| export const getMemberSettlePeriod = (params) => http.get('/member/api/member-structure/get-member-settle-period', {params})
 | |
| 
 | |
| //安置架构
 | |
| export const getAzFramework = (params) => http.get('/member/api/member-structure/az-framework', {params})
 | |
| 
 | |
| //推荐架构
 | |
| export const getTjFramework = (params) => http.get('/member/api/member-structure/tj-framework', {params})
 | |
| 
 | |
| //转换为base64格式用于图片下载
 | |
| export const getUrlBase = (data) => http.post('/member/manage/member-structure/get-url-base64', data)
 | |
| 
 |