|
|
|
@ -66,9 +66,9 @@ class _BargainGroupOrder extends State<BargainGroupOrder>
|
|
|
|
|
]; |
|
|
|
|
_pages = [ |
|
|
|
|
ExchangeHistoryList(0,type), |
|
|
|
|
ExchangeHistoryList(1,type), |
|
|
|
|
ExchangeHistoryList(2,type), |
|
|
|
|
ExchangeHistoryList(3,type), |
|
|
|
|
ExchangeHistoryList(4,type) |
|
|
|
|
ExchangeHistoryList(3,type) |
|
|
|
|
]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -252,25 +252,25 @@ class _ExchangeHistoryList extends State<ExchangeHistoryList> {
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
|
|
|
children: [ |
|
|
|
|
Container( |
|
|
|
|
width: 19.w, |
|
|
|
|
height:21.h, |
|
|
|
|
margin: EdgeInsets.only(left: 12.w, top: 12.h), |
|
|
|
|
alignment: Alignment.center, |
|
|
|
|
decoration: BoxDecoration( |
|
|
|
|
color: Color(0xff32A060), |
|
|
|
|
borderRadius: BorderRadius.circular(2), |
|
|
|
|
), |
|
|
|
|
child: Text( |
|
|
|
|
// (orderInfo != null && orderInfo.isTakeOut == 0) ? "自" : "外", |
|
|
|
|
"自", |
|
|
|
|
style: TextStyle( |
|
|
|
|
fontSize: 12.sp, |
|
|
|
|
fontWeight: FontWeight.bold, |
|
|
|
|
color: Colors.white, |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
// Container( |
|
|
|
|
// width: 19.w, |
|
|
|
|
// height:21.h, |
|
|
|
|
// margin: EdgeInsets.only(left: 12.w, top: 12.h), |
|
|
|
|
// alignment: Alignment.center, |
|
|
|
|
// decoration: BoxDecoration( |
|
|
|
|
// color: Color(0xff32A060), |
|
|
|
|
// borderRadius: BorderRadius.circular(2), |
|
|
|
|
// ), |
|
|
|
|
// child: Text( |
|
|
|
|
// // (orderInfo != null && orderInfo.isTakeOut == 0) ? "自" : "外", |
|
|
|
|
// "自", |
|
|
|
|
// style: TextStyle( |
|
|
|
|
// fontSize: 12.sp, |
|
|
|
|
// fontWeight: FontWeight.bold, |
|
|
|
|
// color: Colors.white, |
|
|
|
|
// ), |
|
|
|
|
// ), |
|
|
|
|
// ), |
|
|
|
|
Expanded( |
|
|
|
|
child: Container( |
|
|
|
|
width: double.infinity, |
|
|
|
@ -289,7 +289,7 @@ class _ExchangeHistoryList extends State<ExchangeHistoryList> {
|
|
|
|
|
), |
|
|
|
|
Padding( |
|
|
|
|
padding: EdgeInsets.only(top: 12.h, right: 12.w), |
|
|
|
|
child: Text( |
|
|
|
|
child:Text( |
|
|
|
|
// (orderInfo != null && |
|
|
|
|
// orderInfo.storeVO != null && |
|
|
|
|
// orderInfo.storeVO.posType != null) |
|
|
|
@ -301,7 +301,7 @@ class _ExchangeHistoryList extends State<ExchangeHistoryList> {
|
|
|
|
|
// orderInfo.sendStatus, |
|
|
|
|
// orderInfo.isTakeOut) |
|
|
|
|
// : "", |
|
|
|
|
"还差${activityOrderList?.howManyMore ?? 0}人拼团成功", |
|
|
|
|
activityOrderList.howManyMore != 0 ? "还差${activityOrderList?.howManyMore ?? 0}人拼团成功" : "拼团成功", |
|
|
|
|
style: TextStyle( |
|
|
|
|
fontSize: 14.sp, |
|
|
|
|
fontWeight: FontWeight.bold, |
|
|
|
|