2024-05-30 11:53:25 +08:00
|
|
|
|
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'];
|
2024-07-01 16:36:12 +08:00
|
|
|
|
selectType.refresh();
|
2024-05-30 11:53:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RxInt selectType = 0.obs; //1-短信;2-邮件
|
|
|
|
|
|
RxInt remainCount = 0.obs; //当前短信/邮箱剩余数量
|
|
|
|
|
|
RxString buyUrl = ''.obs; //短信/邮箱购买链接
|
|
|
|
|
|
}
|