/** * 红包提现数据 * @author 薛鸿潇 */ export class RedBagCashData { public async getRecord(){ let response = await mk.http.sendData('getCashRecord', {}); if (response.errcode != 0) { return; } console.log(response.data); } }