app-starlock/lib/mine/valueAddedServices/valueAddedServicesNoteAndEmailDetail/valueAddedServicesNoteAndEmailDetail_state.dart
“DaisyWu” 89c7f57e2b 1,修复开锁页-操作记录-点进去后圈几圈的加载图标后(也有提示操作失败后)空白显示,手动刷新后才出现数据
2,修复我的页-增值服务-邮件 购买后进入,短信当前剩余数量会先显示0再跳到500,有时只显示0不跳转到数量 问题
3,修复我的页-增值服务-短信 购买后进入,短信当前剩余数量会先显示0再跳到500,有时只显示0不跳转到数量 问题
4,操作记录实体类更新 新增keyboardPwd字段
5,增值服务--短信、邮件请求方法逻辑顺序更改
2024-07-01 16:36:12 +08:00

17 lines
503 B
Dart
Raw Permalink 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'];
selectType.refresh();
}
}
}
RxInt selectType = 0.obs; //1-短信2-邮件
RxInt remainCount = 0.obs; //当前短信/邮箱剩余数量
RxString buyUrl = ''.obs; //短信/邮箱购买链接
}