35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			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/three-framework', { params })
 | 
						|
 | 
						|
// 查询会员子节点
 | 
						|
export const getChildList = params =>
 | 
						|
  http.get('/member/api/member-structure/childList', { 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)
 | 
						|
 | 
						|
//安置架构列表
 | 
						|
export const getAzFrameworkList = params =>
 | 
						|
  http.get('/member/api/member-structure/three-framework-list', { params })
 | 
						|
 | 
						|
// 会员点位列表查询
 | 
						|
// /member/api/member/member-point
 | 
						|
export const getMemberPointDetail = params =>
 | 
						|
  http.get('/member/api/member-structure/pointDetail', { params })
 |