优化问题修改

This commit is contained in:
2026-01-15 16:28:59 +08:00
parent e7a9e4483a
commit 8302d7c179
7 changed files with 28 additions and 7 deletions

View File

@@ -132,7 +132,7 @@ class SitePage extends GetView<SiteController> {
child: Row(
children: [
Text(
'今日预约信息',
'预约信息',
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
@@ -465,6 +465,10 @@ class SitePage extends GetView<SiteController> {
text = '未加氢';
color = Colors.red;
break;
case ReservationStatus.cancel:
text = '已取消';
color = Colors.red;
break;
default:
text = '未知状态';
color = Colors.grey;