裂变星小程序-25.03.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
459 B

// 个人相关接口
const api = {
/**
* 获取推广二维码
*/
getQrCode: {
url: '/info/getQrCode',
method: 'GET',
auth: true,
},
/**
* 获取我的钱包数据信息-钱包流水列表
*/
getWalletList: {
url: '/info/getWalletList',
method: 'GET',
auth: true,
},
/**
* 提现
*/
openMoney: {
url: '/fen/openMoney',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
}
export default api