| 12345678910111213141516171819202122 |
- /**
- * @description 提现数据类
- * @author kaka
- */
- export default class CashProData {
- init_load = false;
- cashPro_money = 0;
- init_success = false;
- init_fail = false;
- callBack: Function = null;
- openCashPro(money) {
- this.cashPro_money = money;
- this.init_load = true;
- mk.ui.openPanel('module/cashPro/cashPro');
- }
- }
|