feat: 后台管理页全量重构 + backoffice 共享模块 + 启动脚本优化

## 后台管理页重构
- admin 端: add_doctor / doctors / home / patients 四页重构
- doctor 端: consultations / dashboard / followup_edit / followups / home / patient_detail / patients / profile / report_detail / reports / settings 十一页重构
- 新增 backoffice 共享模块: backoffice_refresh_providers + backoffice_formatters + backoffice_ui

## 后端
- AdminService 增强(分页/搜索/统计)
- doctor_endpoints 微调
- appsettings.Development 调整
- 新增 admin_service_tests

## 前端其他
- 今日健康卡片 taskRow 行高 5->7(每行 44->48px)
- 健康仪表盘配色定 #4FACFE 纯色蓝
- admin_drawer / doctor_drawer 微调
- api_client IP 适配

## 启动脚本
- start-dev.bat: 加后端就绪检测(轮询 openapi 端点, 最多等 30s)

## 清理
- 删除旧品牌图(agent_welcome_abstract / login_background_v1)
- 删除 app_status_badge 组件
- 删除旧 HANDOFF 文档, 新增 07-17 版

## 测试
- 新增 backoffice_formatters / backoffice_refresh / backoffice_ui 三个测试
- app_router_test 扩展
This commit is contained in:
MingNian
2026-07-18 17:48:44 +08:00
parent e1f4a4b91f
commit ae94ced2d5
41 changed files with 1610 additions and 820 deletions

View File

@@ -35,7 +35,7 @@ class AdminDrawer extends ConsumerWidget {
width: 56,
height: 56,
decoration: BoxDecoration(
gradient: AppColors.doctorGradient,
gradient: AppColors.primaryGradient,
borderRadius: BorderRadius.circular(20),
boxShadow: AppColors.buttonShadow,
),
@@ -145,7 +145,7 @@ class _MenuItem extends StatelessWidget {
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 12),
decoration: BoxDecoration(
gradient: selected
? AppColors.doctorGradient
? AppColors.primaryGradient
: AppColors.surfaceGradient,
borderRadius: BorderRadius.circular(14),
border: Border.all(

View File

@@ -1,39 +0,0 @@
import 'package:flutter/material.dart';
import '../core/app_design_tokens.dart';
class AppStatusBadge extends StatelessWidget {
final String label;
final Color color;
final Color? backgroundColor;
final IconData? icon;
const AppStatusBadge({
super.key,
required this.label,
required this.color,
this.backgroundColor,
this.icon,
});
@override
Widget build(BuildContext context) => Container(
constraints: const BoxConstraints(minHeight: 24),
padding: const EdgeInsets.symmetric(horizontal: 9, vertical: 4),
decoration: BoxDecoration(
color: backgroundColor ?? color.withValues(alpha: 0.10),
borderRadius: AppRadius.pillBorder,
border: Border.all(color: color.withValues(alpha: 0.18)),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
if (icon != null) ...[
Icon(icon, size: 14, color: color),
const SizedBox(width: 4),
],
Text(label, style: AppTextStyles.tag.copyWith(color: color)),
],
),
);
}

View File

@@ -0,0 +1,225 @@
import 'package:flutter/material.dart';
import '../core/app_colors.dart';
/// Shared visual building blocks for doctor and administrator pages.
///
/// These widgets intentionally contain no business state so the back-office
/// screens keep using their existing providers and services.
class BackofficeSurface extends StatelessWidget {
final Widget child;
const BackofficeSurface({super.key, required this.child});
@override
Widget build(BuildContext context) {
return DecoratedBox(
decoration: const BoxDecoration(gradient: AppColors.bgGradient),
child: child,
);
}
}
class BackofficeSectionCard extends StatelessWidget {
final Widget child;
final EdgeInsetsGeometry padding;
final EdgeInsetsGeometry? margin;
const BackofficeSectionCard({
super.key,
required this.child,
this.padding = const EdgeInsets.all(16),
this.margin,
});
@override
Widget build(BuildContext context) {
return Container(
margin: margin,
padding: padding,
decoration: BoxDecoration(
color: Colors.white.withValues(alpha: 0.94),
borderRadius: BorderRadius.circular(20),
border: Border.all(color: Colors.white),
boxShadow: AppColors.cardShadowLight,
),
child: child,
);
}
}
class BackofficeLoadingState extends StatelessWidget {
final String message;
const BackofficeLoadingState({super.key, this.message = '正在加载'});
@override
Widget build(BuildContext context) {
return Center(
child: BackofficeSectionCard(
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 20),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const SizedBox(
width: 28,
height: 28,
child: CircularProgressIndicator(
strokeWidth: 2.5,
color: AppColors.primary,
),
),
const SizedBox(height: 12),
Text(message, style: const TextStyle(color: AppColors.textHint)),
],
),
),
);
}
}
class BackofficeEmptyState extends StatelessWidget {
final IconData icon;
final String title;
final String? description;
final String? actionLabel;
final VoidCallback? onAction;
const BackofficeEmptyState({
super.key,
required this.icon,
required this.title,
this.description,
this.actionLabel,
this.onAction,
});
@override
Widget build(BuildContext context) {
return Center(
child: Padding(
padding: const EdgeInsets.all(24),
child: BackofficeSectionCard(
padding: const EdgeInsets.symmetric(horizontal: 28, vertical: 30),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Container(
width: 64,
height: 64,
decoration: const BoxDecoration(
color: AppColors.primaryLight,
shape: BoxShape.circle,
),
child: Icon(icon, size: 30, color: AppColors.primary),
),
const SizedBox(height: 16),
Text(
title,
textAlign: TextAlign.center,
style: const TextStyle(
fontSize: 17,
fontWeight: FontWeight.w700,
color: AppColors.textPrimary,
),
),
if (description != null) ...[
const SizedBox(height: 6),
Text(
description!,
textAlign: TextAlign.center,
style: const TextStyle(
fontSize: 13,
height: 1.5,
color: AppColors.textHint,
),
),
],
if (actionLabel != null && onAction != null) ...[
const SizedBox(height: 18),
FilledButton(
onPressed: onAction,
style: FilledButton.styleFrom(
backgroundColor: AppColors.primary,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(
horizontal: 22,
vertical: 11,
),
),
child: Text(actionLabel!),
),
],
],
),
),
),
);
}
}
class BackofficeErrorState extends StatelessWidget {
final String message;
final VoidCallback? onRetry;
const BackofficeErrorState({super.key, this.message = '加载失败', this.onRetry});
@override
Widget build(BuildContext context) {
return BackofficeEmptyState(
icon: Icons.cloud_off_outlined,
title: message,
description: '请检查网络后重试',
actionLabel: onRetry == null ? null : '重新加载',
onAction: onRetry,
);
}
}
class BackofficeInactiveDoctorBanner extends StatelessWidget {
const BackofficeInactiveDoctorBanner({super.key});
@override
Widget build(BuildContext context) {
return Container(
margin: const EdgeInsets.only(bottom: 16),
padding: const EdgeInsets.all(14),
decoration: BoxDecoration(
color: AppColors.warningLight,
borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.warning.withValues(alpha: 0.35)),
),
child: const Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Icon(Icons.pause_circle_outline, color: AppColors.warningText),
SizedBox(width: 10),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'账号已停用',
style: TextStyle(
fontSize: 15,
fontWeight: FontWeight.w700,
color: AppColors.warningText,
),
),
SizedBox(height: 3),
Text(
'您仍可服务已绑定患者,但新患者暂时无法选择您。',
style: TextStyle(
fontSize: 13,
height: 1.4,
color: AppColors.textSecondary,
),
),
],
),
),
],
),
);
}
}

View File

@@ -140,7 +140,7 @@ class _DrawerHeader extends StatelessWidget {
width: 56,
height: 56,
decoration: BoxDecoration(
gradient: AppColors.doctorGradient,
gradient: AppColors.primaryGradient,
borderRadius: BorderRadius.circular(20),
boxShadow: AppColors.buttonShadow,
),
@@ -212,7 +212,7 @@ class _DrawerItem extends StatelessWidget {
padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 12),
decoration: BoxDecoration(
gradient: selected
? AppColors.doctorGradient
? AppColors.primaryGradient
: AppColors.surfaceGradient,
borderRadius: BorderRadius.circular(14),
border: Border.all(

View File

@@ -214,9 +214,9 @@ class _HealthDashboard extends StatelessWidget {
),
titleColor: Colors.white,
backgroundGradient: const LinearGradient(
begin: Alignment.centerLeft,
end: Alignment.centerRight,
colors: [Color(0xFF4FACFE), Color(0xFF00F2FE)],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [Color(0xFF89F7FE), Color(0xFF66A6FF)],
),
child: latestHealth.when(
data: (data) => _DashboardMetrics(data: data, ref: ref),