RedBagCashData.ts 311 B

123456789101112131415
  1. /**
  2. * 红包提现数据
  3. * @author 薛鸿潇
  4. */
  5. export class RedBagCashData {
  6. public async getRecord(){
  7. let response = await mk.http.sendData('getCashRecord', {});
  8. if (response.errcode != 0) {
  9. return;
  10. }
  11. console.log(response.data);
  12. }
  13. }