CashProData.ts 425 B

123456789101112131415161718192021222324
  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. isOrderCashOut = false;
  12. openCashPro(money) {
  13. this.cashPro_money = money;
  14. this.init_load = true;
  15. mk.ui.openPanel('module/cashPro/cashPro');
  16. }
  17. }