16 lines
473 B
Dart
16 lines
473 B
Dart
|
|
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; //短信/邮箱购买链接
|
|||
|
|
}
|