打包白名单

main
hs 2025-07-31 21:15:28 +08:00
parent 4accf55b81
commit fe90529162
2 changed files with 11 additions and 8 deletions

1
.gitignore vendored
View File

@ -44,3 +44,4 @@ app.*.map.json
/android/app/profile
/android/app/release
/android/key.properties
/android/app/build.gradle.kts

View File

@ -364,17 +364,19 @@ class _HighworkListPageState extends State<HighworkListPage> {
Text("所在单位负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
],
),
const SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text("作业负责人: ${item['CONFIRM_USER_NAME'] ?? ''}"),
Text("动火点负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
],
),
// const SizedBox(height: 8),
// Row(
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
// children: [
// Text("作业负责人: ${item['CONFIRM_USER_NAME'] ?? ''}"),
// Text("动火点负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
// ],
// ),
const SizedBox(height: 8),
if (item['AUDIT_USER_NAME'] != null)
Text("安全管理部门负责人: ${item['AUDIT_USER_NAME'] ?? ''}"),
if (item['APPROVE_USER_NAME'] != null)
Text("安全管理部门负责人: ${item['APPROVE_USER_NAME'] ?? ''}"),
const SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,