|
|
@ -353,7 +353,7 @@ class _SearchPage extends State<SearchPage> with AutomaticKeepAliveClientMixin, |
|
|
|
child: SmartRefresher( |
|
|
|
child: SmartRefresher( |
|
|
|
controller: refreshController, |
|
|
|
controller: refreshController, |
|
|
|
enablePullDown: true, |
|
|
|
enablePullDown: true, |
|
|
|
enablePullUp: true, |
|
|
|
enablePullUp: false, |
|
|
|
header: MyHeader(), |
|
|
|
header: MyHeader(), |
|
|
|
physics: BouncingScrollPhysics(), |
|
|
|
physics: BouncingScrollPhysics(), |
|
|
|
footer: CustomFooter( |
|
|
|
footer: CustomFooter( |
|
|
@ -756,10 +756,10 @@ class _SearchPage extends State<SearchPage> with AutomaticKeepAliveClientMixin, |
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
|
|
children: [ |
|
|
|
children: [ |
|
|
|
Row( |
|
|
|
Row( |
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround, |
|
|
|
crossAxisAlignment: CrossAxisAlignment.end, |
|
|
|
crossAxisAlignment: CrossAxisAlignment.end, |
|
|
|
children: [ |
|
|
|
children: [ |
|
|
|
Container( |
|
|
|
Expanded(child:Container( |
|
|
|
margin: EdgeInsets.only(top: 8, right: 8), |
|
|
|
margin: EdgeInsets.only(top: 8, right: 8), |
|
|
|
padding: EdgeInsets.only(left: 2, right: 2), |
|
|
|
padding: EdgeInsets.only(left: 2, right: 2), |
|
|
|
height: 17.h, |
|
|
|
height: 17.h, |
|
|
@ -770,21 +770,24 @@ class _SearchPage extends State<SearchPage> with AutomaticKeepAliveClientMixin, |
|
|
|
), |
|
|
|
), |
|
|
|
child: Text( |
|
|
|
child: Text( |
|
|
|
productListBeans.supplierName, |
|
|
|
productListBeans.supplierName, |
|
|
|
|
|
|
|
maxLines: 1, |
|
|
|
|
|
|
|
overflow: TextOverflow.ellipsis, |
|
|
|
style: TextStyle( |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 10.sp, |
|
|
|
fontSize: 10.sp, |
|
|
|
fontWeight: MyFontWeight.regular, |
|
|
|
fontWeight: MyFontWeight.regular, |
|
|
|
color: Colors.white, |
|
|
|
color: Colors.white, |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
),), |
|
|
|
Text( |
|
|
|
Expanded(child: |
|
|
|
|
|
|
|
Container(child: Text( |
|
|
|
"已售${productListBeans?.sellCount ?? 0}件", |
|
|
|
"已售${productListBeans?.sellCount ?? 0}件", |
|
|
|
style: TextStyle( |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 12.sp, |
|
|
|
fontSize: 12.sp, |
|
|
|
fontWeight: MyFontWeight.regular, |
|
|
|
fontWeight: MyFontWeight.regular, |
|
|
|
color: Color(0xFF5D5D5D), |
|
|
|
color: Color(0xFF5D5D5D), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
),alignment: Alignment.topRight,)), |
|
|
|
], |
|
|
|
], |
|
|
|
), |
|
|
|
), |
|
|
|
Text( |
|
|
|
Text( |
|
|
|