更新页面

This commit is contained in:
wyf
2025-04-16 14:27:10 +08:00
parent 146462b467
commit 1765403f21
58 changed files with 7821 additions and 433 deletions

View File

@@ -5,7 +5,24 @@ part 'blueteeth_bind_controller.g.dart'; // 由json_serializable自动生成的
@JsonSerializable()
class BlueteethBindModel {
int read = 1;//是否不再提示教程 0 不再提示 1 需要提示
int? read = 1; //是否不再提示教程 0 不再提示 1 需要提示
double? singal = -70; //扫描信号强度
List? devicelist = []; //蓝牙扫描到的设备数据列表
List? blelist = []; //蓝牙扫描到的设备数据列表
List? wifiList = [];
List bindArr = ["", "", ""];
String connectedWifiName = "";
int connectedRssi = 0;
String deviceName = "";
bool? deviceIndex0 = true;
bool? deviceIndex1 = false;
bool? deviceIndex2 = false;
BlueteethBindModel();
@@ -27,5 +44,23 @@ class BlueteethBindModel {
class BlueteethBindController extends GetControllerEx<BlueteethBindModel> {
BlueteethBindController() {
attr = GetModel(BlueteethBindModel()).obs;
}
}
}
void updateDeviceStatus() {
// try {
// } catch (e) {
// print(e);
// EasyDartModule.logger.info("向后端请求设备绑定状态报错了:$e");
// } finally {
// EasyDartModule.logger.info("向后端请求设备绑定状态");
// }
}
Future bindDevice(d) async {
print("绑定参数:$d");
await Future.delayed(Duration(seconds: 1));
// return ApiService.request
// .post("/api/device/info/bind", data: formdata.FormData.fromMap(d));
}
}