fix: 健康档案保存按钮移至右上角 + 5页面补充返回按钮 + API地址修复

- 健康档案: 保存按钮移到AppBar右侧,删除底部按钮和绿色成功SnackBar
- 5个缺失页面补充左上角返回按钮: 健康概览/编辑用药/报告管理/报告详情/报告解读
- api_client.dart: 默认baseUrl改为192.168.1.29 (支持WiFi直连)
This commit is contained in:
MingNian
2026-06-22 15:58:59 +08:00
parent 6ce010e46a
commit 80540e2191
6 changed files with 40 additions and 44 deletions

View File

@@ -4,9 +4,11 @@ import 'package:dio/dio.dart';
import 'local_database.dart';
/// API 基础地址。可通过 --dart-define=API_BASE_URL=http://host:5000 覆盖。
/// Android 真机 USB: 先执行 adb reverse tcp:5000 tcp:5000 然后 localhost 即可
/// Android 真机 WiFi: flutter run --dart-define=API_BASE_URL=http://电脑IP:5000
const String baseUrl = String.fromEnvironment(
'API_BASE_URL',
defaultValue: 'http://localhost:5000',
defaultValue: 'http://192.168.1.29:5000',
);
class ApiException implements Exception {