体征传感器

This commit is contained in:
czz
2025-07-19 17:52:39 +08:00
parent 594b1f31e0
commit 1480b2e708
17 changed files with 1130 additions and 795 deletions

View File

@@ -25,10 +25,14 @@ class SleepReportModel {
}
class SleepReportController extends GetControllerEx<SleepReportModel> {
Rx<DateTime?> selectedDate = Rx<DateTime?>(null);
RxMap sleepReport = RxMap();
RxMap<String, dynamic> sleepReport = <String, dynamic>{}.obs;
var isLoading = false.obs;
// 每种类型对应一份数据
SleepReportController() {
attr = GetModel(SleepReportModel()).obs;
}
}
}