CashProData.ts 394 B

12345678910111213141516171819202122
  1. /**
  2. * @description 提现数据类
  3. * @author kaka
  4. */
  5. export default class CashProData {
  6. init_load = false;
  7. cashPro_money = 0;
  8. init_success = false;
  9. init_fail = false;
  10. callBack: Function = null;
  11. openCashPro(money) {
  12. this.cashPro_money = money;
  13. this.init_load = true;
  14. mk.ui.openPanel('module/cashPro/cashPro');
  15. }
  16. }