调整司机预约时间

站点工单状态
This commit is contained in:
2025-12-10 17:34:46 +08:00
parent f638704fba
commit 1c916a7fad
7 changed files with 98 additions and 43 deletions

View File

@@ -433,15 +433,19 @@ class SitePage extends GetView<SiteController> {
Color color;
switch (status) {
case ReservationStatus.pending:
text = '处理';
text = '加氢';
color = Colors.orange;
break;
case ReservationStatus.completed:
text = '完成';
text = '加氢';
color = Colors.greenAccent;
break;
case ReservationStatus.rejected:
text = '拒绝';
text = '拒绝加氢';
color = Colors.red;
break;
case ReservationStatus.unadded:
text = '未加氢';
color = Colors.red;
break;
default: