2025.9.2 修改bug

main
xufei 2025-09-02 08:42:49 +08:00
parent c75dfba154
commit bd4b6810f8
4 changed files with 11 additions and 3 deletions

View File

@ -40,6 +40,7 @@ class ListItemFactory {
],
),
if (isRight)
Row(
mainAxisSize: MainAxisSize.min,
children: [

View File

@ -297,7 +297,10 @@ class _CommitmentWorkshopDetailPageState extends State<CommitmentWorkshopDetailP
),
const SizedBox(width: 15),
if (pd['SIGN_PATH'] != null)
Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
Expanded(
child: Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
),
],
),

View File

@ -225,7 +225,9 @@ class _CompanySafetyCommitmentDetailState extends State<CompanySafetyCommitmentD
),
const SizedBox(width: 15),
if (pd['SIGN_PATH'] != null)
Image.network(ApiService.baseImgPath+pd['SIGN_PATH'] ,width: 230,height: 150,fit: BoxFit.contain,),
Expanded(
child: Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
),
],
),

View File

@ -301,7 +301,9 @@ class _TeamSafetyCommitmentDetailState extends State<TeamSafetyCommitmentDetail>
),
const SizedBox(width: 15),
if (pd['SIGN_PATH'] != null)
Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
Expanded(
child: Image.network(ApiService.baseImgPath+pd['SIGN_PATH'],width: 230,height: 150,fit: BoxFit.contain,),
),
],
),