web-zk-h5/config/architecture.js

26 lines
846 B
JavaScript
Raw Normal View History

2025-03-23 09:29:40 +08:00
const http = uni.$u.http
//架构上方会员等级图标
export const getAvarerInfo = params =>
http.get('/member/api/member-structure/get-avatar-info', { params })
2025-03-23 09:29:40 +08:00
//结算期数下拉选
export const getMemberSettlePeriod = params =>
http.get('/member/api/member-structure/get-member-settle-period', { params })
2025-03-23 09:29:40 +08:00
//安置架构
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 })
2025-03-23 09:29:40 +08:00
//推荐架构
export const getTjFramework = params =>
http.get('/member/api/member-structure/tj-framework', { params })
2025-03-23 09:29:40 +08:00
//转换为base64格式用于图片下载
export const getUrlBase = data =>
http.post('/member/manage/member-structure/get-url-base64', data)