From d81d0c04ea86bc1ae6b3d3919f6215a4dcf648c2 Mon Sep 17 00:00:00 2001 From: Songzex <2402265378@qq.com> Date: Wed, 25 Feb 2026 13:41:23 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=80=E5=87=BA=E7=99=BB=E5=BD=95+=E6=9C=BA?= =?UTF-8?q?=E5=99=A8=E7=8A=B6=E6=80=81+=E5=88=87=E6=8D=A2=E8=AE=BE?= =?UTF-8?q?=E5=A4=87+=E5=8E=86=E5=8F=B2=E4=BD=9C=E4=B8=9A=E8=AE=B0?= =?UTF-8?q?=E5=BD=95+=E8=AE=BE=E5=A4=87=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/src/main/AndroidManifest.xml | 19 ++ ios/Runner/Info.plist | 6 + lib/core/di/injection.dart | 26 ++ .../logging/sentry_logger_impl.dart | 12 +- lib/core/network/net_message_dispatcher.dart | 5 +- lib/core/network/tcp/tcp_client.dart | 50 +++- lib/core/router/app_router.dart | 15 + lib/core/router/route_paths.dart | 5 + .../auth/presentation/bloc/auth_cubit.dart | 5 +- .../device_hostriry_work_impl.dart | 72 +++++ .../entities/device_run_hostrity_entity.dart | 30 ++ .../devices/domain/errors/device_failure.dart | 22 ++ .../device_hostrity_work_repository.dart | 14 + .../device_work_hostrirty_usecase.dart | 27 ++ .../presentation/pages/route_plan_page.dart | 7 +- .../pages/running_status_page.dart | 267 +++++++++++++++++- .../presentation/widgets/ImmersionHeader.dart | 4 + .../map/CoordTransform/coord_transform.dart | 51 ++++ .../widgets/map/test_amap_page.dart | 178 ++++++++++++ .../widgets/map/testmap_pages.dart | 228 +++++++++++++++ .../presentation/widgets/path_list_pages.dart | 86 ++++++ .../widgets/work_params_card.dart | 235 +++++++++++++-- .../pages/machine_details_page.dart | 249 ++++++++++++++++ .../my/presentation/pages/my_page.dart | 125 ++++---- .../my/presentation/routes/my_routes.dart | 3 + .../web_view/user_info_pages.dart | 47 +++ lib/main.dart | 18 +- macos/Flutter/GeneratedPluginRegistrant.swift | 4 +- pubspec.lock | 252 +++++++++++++++-- pubspec.yaml | 12 + .../flutter/generated_plugin_registrant.cc | 6 + windows/flutter/generated_plugins.cmake | 2 + 32 files changed, 1940 insertions(+), 142 deletions(-) create mode 100644 lib/features/devices/data/repositories/device_hostriry_work_impl.dart create mode 100644 lib/features/devices/domain/entities/device_run_hostrity_entity.dart create mode 100644 lib/features/devices/domain/repositories/device_hostrity_work_repository.dart create mode 100644 lib/features/devices/domain/usecases/device_work_hostrirty_usecase.dart create mode 100644 lib/features/home/presentation/widgets/map/CoordTransform/coord_transform.dart create mode 100644 lib/features/home/presentation/widgets/map/test_amap_page.dart create mode 100644 lib/features/home/presentation/widgets/map/testmap_pages.dart create mode 100644 lib/features/home/presentation/widgets/path_list_pages.dart create mode 100644 lib/features/machine_details/presentation/pages/machine_details_page.dart create mode 100644 lib/features/my/presentation/web_view/user_info_pages.dart diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index c4862729..67dc4a4f 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -7,6 +7,16 @@ + + + + + + + + + + + + + + + + +