app-starlock/lib/mine/valueAddedServices/valueAddedServicesNoteAndEmailDetail/valueAddedServicesNoteAndEmailDetail_state.dart
Daisy ad8eda0345 1,新增增值服务相关网页购买统一处理
2,新增短信余量接口、购买流程对接逻辑
3,新增邮件余量接口、购买流程对接逻辑
2024-05-30 11:53:25 +08:00

16 lines
473 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:get/get.dart';
class ValueAddedServicesNoteAndEmailDetailState {
ValueAddedServicesNoteAndEmailDetailState() {
if (Get.arguments is Map && Get.arguments.isNotEmpty) {
if (Get.arguments['type'] != null) {
selectType.value = Get.arguments['type'];
}
}
}
RxInt selectType = 0.obs; //1-短信2-邮件
RxInt remainCount = 0.obs; //当前短信/邮箱剩余数量
RxString buyUrl = ''.obs; //短信/邮箱购买链接
}