// 个人相关接口 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