20 lines
598 B
Dart
20 lines
598 B
Dart
import 'package:get/get.dart';
|
|
|
|
import '../selectGateway/getGatewayInfo_model.dart';
|
|
|
|
class GatewayGetWifiListState {
|
|
GatewayGetWifiListState() {
|
|
var map = Get.arguments;
|
|
if (map['gatewayModel'] != null && map['gatewayModel'] != '') {
|
|
gatewayModel = map['gatewayModel'];
|
|
}
|
|
}
|
|
|
|
final RxList<Map<String, String>> wifiNameDataList =
|
|
<Map<String, String>>[].obs;
|
|
|
|
GetGatewayInfoModel gatewayModel = GetGatewayInfoModel();
|
|
RxBool ifCurrentScreen = true.obs; // 是否是当前界面,用于判断是否需要针对当前界面进行展示
|
|
RxInt sureBtnState = 0.obs;
|
|
}
|