2025.9.2 修改bug
parent
c75dfba154
commit
bd4b6810f8
|
@ -40,6 +40,7 @@ class ListItemFactory {
|
|||
],
|
||||
),
|
||||
if (isRight)
|
||||
|
||||
Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
|
|
|
@ -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,),
|
||||
),
|
||||
|
||||
|
||||
],
|
||||
),
|
||||
|
|
|
@ -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,),
|
||||
),
|
||||
|
||||
],
|
||||
),
|
||||
|
|
|
@ -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,),
|
||||
),
|
||||
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Reference in New Issue