打包白名单
parent
4accf55b81
commit
fe90529162
|
@ -44,3 +44,4 @@ app.*.map.json
|
||||||
/android/app/profile
|
/android/app/profile
|
||||||
/android/app/release
|
/android/app/release
|
||||||
/android/key.properties
|
/android/key.properties
|
||||||
|
/android/app/build.gradle.kts
|
||||||
|
|
|
@ -364,17 +364,19 @@ class _HighworkListPageState extends State<HighworkListPage> {
|
||||||
Text("所在单位负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
|
Text("所在单位负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 8),
|
// const SizedBox(height: 8),
|
||||||
Row(
|
// Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
// mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
// children: [
|
||||||
Text("作业负责人: ${item['CONFIRM_USER_NAME'] ?? ''}"),
|
// Text("作业负责人: ${item['CONFIRM_USER_NAME'] ?? ''}"),
|
||||||
Text("动火点负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
|
// Text("动火点负责人: ${item['LEADER_USER_NAME'] ?? ''}"),
|
||||||
],
|
// ],
|
||||||
),
|
// ),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
if (item['AUDIT_USER_NAME'] != null)
|
if (item['AUDIT_USER_NAME'] != null)
|
||||||
Text("安全管理部门负责人: ${item['AUDIT_USER_NAME'] ?? ''}"),
|
Text("安全管理部门负责人: ${item['AUDIT_USER_NAME'] ?? ''}"),
|
||||||
|
if (item['APPROVE_USER_NAME'] != null)
|
||||||
|
Text("安全管理部门负责人: ${item['APPROVE_USER_NAME'] ?? ''}"),
|
||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
|
Loading…
Reference in New Issue