Compare commits

..

2 Commits

Author SHA1 Message Date
machuanyu 6b3c1fd2a4 Merge branch 'mcy_new' into new_main 2024-07-03 14:50:34 +08:00
machuanyu bb7dcfb0ef 无数据修改 2024-07-03 14:50:17 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin
Obx(() {
return Container(
padding: EdgeInsets.symmetric(horizontal: 12.w),
child: Column(
child: state.workList.isNotEmpty?Column(
children: List.generate(state.workList.length, (index) {
Items item = state.workList[index];
return InkWell(
@ -242,7 +242,7 @@ class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin
),
);
}),
),
):const MyEmptyWidget(),
);
}),
],