新增数据

This commit is contained in:
2025-12-03 15:04:58 +08:00
parent 0bfedd54cb
commit ba3467810c
4 changed files with 24 additions and 8 deletions

View File

@@ -94,6 +94,17 @@ class SitePage extends GetView<SiteController> {
],
),
),
const SizedBox(height: 12),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
_buildStatItem(controller.orderTotalAmount, '加氢总量'),
_buildStatItem(controller.orderUnfinishedAmount, '未加氢总量'),
],
),
),
],
),
),