After Width: | Height: | Size: 482 B |
After Width: | Height: | Size: 657 B |
After Width: | Height: | Size: 580 B |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 548 B |
After Width: | Height: | Size: 616 B |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 964 B |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 933 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 276 B |
After Width: | Height: | Size: 342 B |
After Width: | Height: | Size: 327 B |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 824 B |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 294 B |
After Width: | Height: | Size: 314 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1,720 @@ |
|||||||
|
import 'package:dio/dio.dart'; |
||||||
|
import 'package:flutter/cupertino.dart'; |
||||||
|
import 'package:flutter/material.dart'; |
||||||
|
import 'package:huixiang/generated/l10n.dart'; |
||||||
|
import 'package:huixiang/order/order_view/order_commodity.dart'; |
||||||
|
import 'package:huixiang/order/order_view/order_info.dart'; |
||||||
|
import 'package:huixiang/retrofit/data/base_data.dart'; |
||||||
|
import 'package:huixiang/retrofit/data/order_info.dart'; |
||||||
|
import 'package:huixiang/retrofit/retrofit_api.dart'; |
||||||
|
import 'package:huixiang/utils/font_weight.dart'; |
||||||
|
import 'package:huixiang/view_widget/my_appbar.dart'; |
||||||
|
import 'package:huixiang/view_widget/round_button.dart'; |
||||||
|
import 'package:shared_preferences/shared_preferences.dart'; |
||||||
|
import 'package:flutter_screenutil/flutter_screenutil.dart'; |
||||||
|
|
||||||
|
class Settlement extends StatefulWidget { |
||||||
|
final arguments; |
||||||
|
final OrderInfo orderInfo; |
||||||
|
|
||||||
|
Settlement({this.arguments,this.orderInfo}); |
||||||
|
|
||||||
|
@override |
||||||
|
State<StatefulWidget> createState() { |
||||||
|
return _Settlement(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
class _Settlement extends State<Settlement> { |
||||||
|
ApiService apiService; |
||||||
|
int selectedBtn = 0; |
||||||
|
|
||||||
|
@override |
||||||
|
void initState() { |
||||||
|
super.initState(); |
||||||
|
|
||||||
|
SharedPreferences.getInstance().then((value) { |
||||||
|
apiService = ApiService( |
||||||
|
Dio(), |
||||||
|
context: context, |
||||||
|
token: value.getString("token"), |
||||||
|
); |
||||||
|
queryDetails(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
OrderInfo orderInfo; |
||||||
|
int payStatus = 0; |
||||||
|
int orderStatus = 0; |
||||||
|
int sendStatus = 0; |
||||||
|
int isTakeOut = 0; |
||||||
|
int refundStatus = 0; |
||||||
|
|
||||||
|
// String storeType = "NORMALSTORE"; //NORMALSTORE FASTSTORE RETAILSTORE |
||||||
|
|
||||||
|
queryDetails() async { |
||||||
|
BaseData<OrderInfo> baseData = |
||||||
|
await apiService.orderDetail(widget.arguments["id"]); |
||||||
|
if (baseData != null && baseData.isSuccess) { |
||||||
|
orderInfo = baseData.data; |
||||||
|
payStatus = orderInfo.payStatus; |
||||||
|
orderStatus = orderInfo.orderStatus; |
||||||
|
sendStatus = orderInfo.sendStatus; |
||||||
|
isTakeOut = orderInfo.isTakeOut; |
||||||
|
refundStatus = orderInfo.refundStatus; |
||||||
|
// storeType = orderInfo.storeVO.posType.code; |
||||||
|
print("order refund_status: $refundStatus"); |
||||||
|
print("order payStatus: $payStatus"); |
||||||
|
print("order orderStatus: $orderStatus"); |
||||||
|
print("order sendStatus: $sendStatus"); |
||||||
|
print("order isTakeOut: $isTakeOut"); |
||||||
|
if (mounted) |
||||||
|
setState(() { |
||||||
|
statusTitle(); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@override |
||||||
|
Widget build(BuildContext context) { |
||||||
|
return Stack( |
||||||
|
children: [ |
||||||
|
Positioned( |
||||||
|
top: 0, |
||||||
|
left: 0, |
||||||
|
right: 0, |
||||||
|
child: Container( |
||||||
|
height: (orderStatus >= 4 ? 118.h : 118.h) + |
||||||
|
MediaQuery.of(context).padding.top + |
||||||
|
kToolbarHeight + |
||||||
|
48.h, |
||||||
|
color: Color(0xFF3A405A), |
||||||
|
width: MediaQuery.of(context).size.width, |
||||||
|
), |
||||||
|
), |
||||||
|
Positioned( |
||||||
|
child: Scaffold( |
||||||
|
backgroundColor: Colors.transparent, |
||||||
|
appBar: MyAppBar( |
||||||
|
background: Color(0xFF3A405A), |
||||||
|
leadingColor: Colors.white, |
||||||
|
title:S.of(context).dingdanjiesuan, |
||||||
|
titleColor: Colors.white, |
||||||
|
titleSize: 18.sp, |
||||||
|
), |
||||||
|
body: Container( |
||||||
|
child: SingleChildScrollView( |
||||||
|
physics: BouncingScrollPhysics(), |
||||||
|
child: Container( |
||||||
|
child: Column( |
||||||
|
children: [ |
||||||
|
distributionMode(), |
||||||
|
SizedBox(height: 14,), |
||||||
|
|
||||||
|
///订单商品 |
||||||
|
OrderCommodity(orderInfo), |
||||||
|
// if (payStatus == 0) couponRemarks(), |
||||||
|
/*(payStatus == 0) ? paySelector() : */ |
||||||
|
|
||||||
|
///显示订单信息 |
||||||
|
activityRemarks(), |
||||||
|
|
||||||
|
payMethod(), |
||||||
|
|
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
), |
||||||
|
), |
||||||
|
), |
||||||
|
left: 0, |
||||||
|
right: 0, |
||||||
|
top: 0, |
||||||
|
bottom: 0, |
||||||
|
) |
||||||
|
], |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
String title = ""; |
||||||
|
String center = ""; |
||||||
|
|
||||||
|
statusTitle() { |
||||||
|
if (isTakeOut == 0) { |
||||||
|
if (payStatus == 0) { |
||||||
|
title = S.of(context).dingdandaizhifu; |
||||||
|
} else { |
||||||
|
title = S.of(context).dingdanyizhifu; |
||||||
|
switch (orderStatus) { |
||||||
|
case 2: |
||||||
|
title = S.of(context).shangjiazhengzaipeican; |
||||||
|
break; |
||||||
|
case 3: |
||||||
|
title = S.of(context).dengdaiyonghuqucan; |
||||||
|
center = S.of(context).qudanhao(orderInfo.dayFlowCode); |
||||||
|
break; |
||||||
|
case 4: |
||||||
|
title = S.of(context).dingdanyiwancheng; |
||||||
|
center = S.of(context).dingdanyiwancheng; |
||||||
|
break; |
||||||
|
case 5: |
||||||
|
title = S.of(context).yiquxiao; |
||||||
|
center = S.of(context).yiquxiao; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
} else if (isTakeOut == 1) { |
||||||
|
if (payStatus == 0) { |
||||||
|
title = S.of(context).dingdandaizhifu; |
||||||
|
} else { |
||||||
|
title = S.of(context).dengdaishangjiaqueren; |
||||||
|
if (orderStatus < 4) { |
||||||
|
switch (sendStatus) { |
||||||
|
case 1: |
||||||
|
title = S.of(context).zhengzaihujiaoqishou; |
||||||
|
break; |
||||||
|
case 2: |
||||||
|
title = S.of(context).qishouyijiedanquhuozhong; |
||||||
|
break; |
||||||
|
case 3: |
||||||
|
title = S.of(context).qishoupeisongzhongyujisongdashijian; |
||||||
|
break; |
||||||
|
case 4: |
||||||
|
title = S.of(context).dingdanyisongda; |
||||||
|
center = S.of(context).dingdanyisongda; |
||||||
|
switch (orderStatus) { |
||||||
|
case 4: |
||||||
|
title = S.of(context).dingdanyiwancheng; |
||||||
|
center = S.of(context).dingdanyiwancheng; |
||||||
|
break; |
||||||
|
} |
||||||
|
break; |
||||||
|
} |
||||||
|
} else if (orderStatus == 4) { |
||||||
|
title = S.of(context).dingdanyiwancheng; |
||||||
|
center = S.of(context).dingdanyiwancheng; |
||||||
|
} |
||||||
|
} |
||||||
|
} else if (isTakeOut == 2) { |
||||||
|
if (payStatus == 0) { |
||||||
|
title = S.of(context).dingdandaizhifu; |
||||||
|
} else { |
||||||
|
title = S.of(context).dingdandaifahuo; |
||||||
|
if (orderStatus < 4) { |
||||||
|
switch (sendStatus) { |
||||||
|
case 1: |
||||||
|
title = S.of(context).shangjiayifahuo; |
||||||
|
break; |
||||||
|
case 4: |
||||||
|
title = S.of(context).huopinyisongda; |
||||||
|
center = S.of(context).huopinyisongda; |
||||||
|
break; |
||||||
|
} |
||||||
|
} else if (orderStatus == 4) { |
||||||
|
title = S.of(context).dingdanyiwancheng; |
||||||
|
center = S.of(context).dingdanyiwancheng; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
if (orderStatus == 5) { |
||||||
|
title = S.of(context).yiquxiao; |
||||||
|
center = S.of(context).yiquxiao; |
||||||
|
} |
||||||
|
if (refundStatus == 1) { |
||||||
|
title = S.of(context).dingdanyituikuan; |
||||||
|
center = S.of(context).dingdanyituikuan; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
Widget distributionMode() { |
||||||
|
return Container( |
||||||
|
decoration: BoxDecoration( |
||||||
|
color: Color(0xFFFAFAFA), |
||||||
|
boxShadow: [ |
||||||
|
BoxShadow( |
||||||
|
color: Color(0x0D000000), |
||||||
|
offset: Offset(0, 3), |
||||||
|
blurRadius: 14, |
||||||
|
spreadRadius: 0, |
||||||
|
), |
||||||
|
], |
||||||
|
borderRadius: BorderRadius.circular(8), |
||||||
|
), |
||||||
|
height: 175.h, |
||||||
|
margin: EdgeInsets.only(left: 16, right: 16, top: 15), |
||||||
|
child: Stack( |
||||||
|
children: [ |
||||||
|
Column( |
||||||
|
children: [ |
||||||
|
Container( |
||||||
|
decoration: BoxDecoration( |
||||||
|
color: Color(0xFF9C9FAC), |
||||||
|
borderRadius: BorderRadius.only( |
||||||
|
topLeft: Radius.circular(8), |
||||||
|
topRight: Radius.circular(8), |
||||||
|
), |
||||||
|
), |
||||||
|
height: 50.h, |
||||||
|
child: Row( |
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.center, |
||||||
|
children: [ |
||||||
|
Expanded( |
||||||
|
flex: 1, |
||||||
|
child: Container( |
||||||
|
height: 50.h, |
||||||
|
decoration: BoxDecoration( |
||||||
|
image: selectedBtn == 0 |
||||||
|
? DecorationImage( |
||||||
|
image: AssetImage( |
||||||
|
"assets/image/order_btn1.png"), |
||||||
|
fit: BoxFit.fill, |
||||||
|
) |
||||||
|
: null, |
||||||
|
borderRadius: BorderRadius.only( |
||||||
|
topLeft: Radius.circular(8))), |
||||||
|
child: GestureDetector( |
||||||
|
onTap: () { |
||||||
|
setState(() { |
||||||
|
selectedBtn = 0; |
||||||
|
}); |
||||||
|
}, |
||||||
|
child: Stack( |
||||||
|
alignment: Alignment.center, |
||||||
|
children: [ |
||||||
|
Text( |
||||||
|
S.of(context).daodianziqu, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
fontWeight: MyFontWeight.semi_bold, |
||||||
|
color: Colors.black, |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
)), |
||||||
|
), |
||||||
|
Expanded( |
||||||
|
flex: 1, |
||||||
|
child: GestureDetector( |
||||||
|
onTap: () { |
||||||
|
setState(() { |
||||||
|
selectedBtn = 1; |
||||||
|
}); |
||||||
|
}, |
||||||
|
child: Stack( |
||||||
|
alignment: Alignment.center, |
||||||
|
children: [ |
||||||
|
if (selectedBtn == 1) |
||||||
|
Image.asset( |
||||||
|
"assets/image/order_btn2.png", |
||||||
|
height: 50.h, |
||||||
|
fit: BoxFit.fill, |
||||||
|
), |
||||||
|
Text( |
||||||
|
S.of(context).waimaipeisong, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
fontWeight: MyFontWeight.regular, |
||||||
|
color: Colors.black, |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
), |
||||||
|
Expanded( |
||||||
|
flex: 1, |
||||||
|
child: Container( |
||||||
|
height: 50.h, |
||||||
|
decoration: BoxDecoration( |
||||||
|
image: selectedBtn == 2 |
||||||
|
? DecorationImage( |
||||||
|
image: AssetImage( |
||||||
|
"assets/image/order_btn3.png"), |
||||||
|
fit: BoxFit.fill, |
||||||
|
) |
||||||
|
: null, |
||||||
|
borderRadius: BorderRadius.only( |
||||||
|
topRight: Radius.circular(8))), |
||||||
|
child: GestureDetector( |
||||||
|
onTap: () { |
||||||
|
setState(() { |
||||||
|
selectedBtn = 2; |
||||||
|
}); |
||||||
|
}, |
||||||
|
child: Stack( |
||||||
|
alignment: Alignment.center, |
||||||
|
children: [ |
||||||
|
Text( |
||||||
|
S.of(context).kuaidiwuliu, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
fontWeight: MyFontWeight.regular, |
||||||
|
color: Colors.black, |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
)), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
Container( |
||||||
|
width: double.infinity, |
||||||
|
padding: EdgeInsets.only(left: 16, right: 16, top: 15), |
||||||
|
child: Column( |
||||||
|
children: [ |
||||||
|
Row( |
||||||
|
children: [ |
||||||
|
Expanded(child:Column( |
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.start, |
||||||
|
children: [ |
||||||
|
Text( |
||||||
|
"前进麦味·天然烘焙(凯德1818店)", |
||||||
|
overflow: TextOverflow.ellipsis, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
fontWeight: MyFontWeight.semi_bold, |
||||||
|
color: Color(0xFF4C4C4C), |
||||||
|
), |
||||||
|
), |
||||||
|
SizedBox( |
||||||
|
height: 4, |
||||||
|
), |
||||||
|
Text( |
||||||
|
"武昌区中国铁建凯德1818蓝调步行街中北路109附33门牌号05", |
||||||
|
overflow: TextOverflow.ellipsis, |
||||||
|
maxLines: 2, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 12.sp, |
||||||
|
fontWeight: MyFontWeight.regular, |
||||||
|
color: Color(0xFF727272), |
||||||
|
), |
||||||
|
), |
||||||
|
SizedBox( |
||||||
|
height: 12, |
||||||
|
), |
||||||
|
], |
||||||
|
),), |
||||||
|
SizedBox( |
||||||
|
width: 18, |
||||||
|
), |
||||||
|
Stack( |
||||||
|
alignment: Alignment.center, |
||||||
|
children: [ |
||||||
|
Column( |
||||||
|
children: [ |
||||||
|
Image.asset( |
||||||
|
"assets/image/map.png", |
||||||
|
height: 61.h, |
||||||
|
width:61.w, |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
Column(children: [ |
||||||
|
RoundButton( |
||||||
|
width: 41.w, |
||||||
|
height: 13, |
||||||
|
text: "距离您11m", |
||||||
|
textColor:Color(0xFF34A262), |
||||||
|
fontWeight: MyFontWeight.semi_bold, |
||||||
|
radius:7.5, |
||||||
|
backgroup:Colors.white, |
||||||
|
fontSize:7.sp, |
||||||
|
), |
||||||
|
Image.asset( |
||||||
|
"assets/image/landmark.png", |
||||||
|
height: 24.h, |
||||||
|
width:24.w, |
||||||
|
), |
||||||
|
],), |
||||||
|
], |
||||||
|
) |
||||||
|
], |
||||||
|
), |
||||||
|
Row( |
||||||
|
children: [ |
||||||
|
Expanded(child: Text( |
||||||
|
S.of(context).yuliudianhua, |
||||||
|
overflow: TextOverflow.ellipsis, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
fontWeight: MyFontWeight.regular, |
||||||
|
color: Color(0xFF4C4C4C), |
||||||
|
), |
||||||
|
)), |
||||||
|
Text( |
||||||
|
"12309090909", |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
fontWeight: MyFontWeight.medium, |
||||||
|
color: Color(0xFF4C4C4C), |
||||||
|
), |
||||||
|
), |
||||||
|
Image.asset( |
||||||
|
"assets/image/pen.png", |
||||||
|
height:14.h, |
||||||
|
width:14.w, |
||||||
|
), |
||||||
|
], |
||||||
|
) |
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
// Image.asset( |
||||||
|
// "assets/image/shadow.png", |
||||||
|
// width: 24.w, |
||||||
|
// height: 24.h, |
||||||
|
// fit: BoxFit.contain, |
||||||
|
// ), |
||||||
|
], |
||||||
|
), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
Widget activityRemarks(){ |
||||||
|
return Container( |
||||||
|
decoration: BoxDecoration( |
||||||
|
color: Colors.white, |
||||||
|
boxShadow: [ |
||||||
|
BoxShadow( |
||||||
|
color: Color(0x0D000000), |
||||||
|
offset: Offset(0, 3), |
||||||
|
blurRadius: 14, |
||||||
|
spreadRadius: 0, |
||||||
|
), |
||||||
|
], |
||||||
|
borderRadius: BorderRadius.circular(8), |
||||||
|
), |
||||||
|
height: 86.h, |
||||||
|
margin: EdgeInsets.only(left: 16, right: 16, top: 15), |
||||||
|
padding: EdgeInsets.only(left: 16, right: 16, top: 16), |
||||||
|
child: Column( |
||||||
|
children: [ |
||||||
|
Row( |
||||||
|
mainAxisAlignment: MainAxisAlignment.center, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.center, |
||||||
|
children: [ |
||||||
|
Expanded(flex: 1,child:Text( |
||||||
|
S.of(context).youhuiquan, |
||||||
|
style: TextStyle( |
||||||
|
fontWeight: MyFontWeight.regular, |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xFF353535), |
||||||
|
), |
||||||
|
)), |
||||||
|
Text( |
||||||
|
"满30减10", |
||||||
|
textAlign: TextAlign.end, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xFF32A060), |
||||||
|
fontWeight: MyFontWeight.semi_bold |
||||||
|
), |
||||||
|
), |
||||||
|
Icon( |
||||||
|
Icons.keyboard_arrow_right, |
||||||
|
size: 16, |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
SizedBox(height: 13, |
||||||
|
), |
||||||
|
Row( |
||||||
|
mainAxisAlignment: MainAxisAlignment.center, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.center, |
||||||
|
children: [ |
||||||
|
Expanded(flex: 1,child:Text( |
||||||
|
S.of(context).beizhu, |
||||||
|
style: TextStyle( |
||||||
|
fontWeight: MyFontWeight.regular, |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xFF353535), |
||||||
|
), |
||||||
|
)), |
||||||
|
Text( |
||||||
|
"口味、面包硬度等", |
||||||
|
textAlign: TextAlign.end, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xFF353535), |
||||||
|
fontWeight: MyFontWeight.semi_bold |
||||||
|
), |
||||||
|
), |
||||||
|
Icon( |
||||||
|
Icons.keyboard_arrow_right, |
||||||
|
size: 16, |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
Widget payMethod(){ |
||||||
|
return Container( |
||||||
|
width: double.infinity, |
||||||
|
margin: EdgeInsets.only( |
||||||
|
left: 16.w, |
||||||
|
right: 16.w, |
||||||
|
top: 12.h, |
||||||
|
bottom: 4.h, |
||||||
|
), |
||||||
|
padding: EdgeInsets.only( |
||||||
|
left: 16.w, |
||||||
|
right: 16.w, |
||||||
|
top: 20.h, |
||||||
|
bottom: 20.h, |
||||||
|
), |
||||||
|
decoration: BoxDecoration( |
||||||
|
boxShadow: [ |
||||||
|
BoxShadow( |
||||||
|
color: Color(0x000000).withAlpha(25), |
||||||
|
offset: Offset(0, 1), |
||||||
|
blurRadius: 12.0, |
||||||
|
), |
||||||
|
], |
||||||
|
color: Colors.white, |
||||||
|
borderRadius: BorderRadius.circular(8), |
||||||
|
), |
||||||
|
child: Column( |
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceAround, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.start, |
||||||
|
children: [ |
||||||
|
Padding( |
||||||
|
padding: EdgeInsets.only(bottom: 16.h), |
||||||
|
child: Text( |
||||||
|
S.of(context).zhifufangshi, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 16.sp, |
||||||
|
color: Colors.black, |
||||||
|
fontWeight:MyFontWeight.regular, |
||||||
|
), |
||||||
|
), |
||||||
|
), |
||||||
|
GestureDetector( |
||||||
|
onTap: () { |
||||||
|
setState(() { |
||||||
|
checkIndex =1; |
||||||
|
}); |
||||||
|
}, |
||||||
|
child: Row( |
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.start, |
||||||
|
children: [ |
||||||
|
checkView(1), |
||||||
|
Text( |
||||||
|
S.of(context).pingtaiyue, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xff353535), |
||||||
|
fontWeight: MyFontWeight.semi_bold |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
SizedBox(height: 10,), |
||||||
|
GestureDetector( |
||||||
|
onTap: () { |
||||||
|
setState(() { |
||||||
|
checkIndex =2; |
||||||
|
}); |
||||||
|
}, |
||||||
|
child: Row( |
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.start, |
||||||
|
children: [ |
||||||
|
checkView(2), |
||||||
|
Text( |
||||||
|
S.of(context).dianpuyue, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xff353535), |
||||||
|
fontWeight: MyFontWeight.semi_bold, |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
SizedBox(height: 10,), |
||||||
|
GestureDetector( |
||||||
|
onTap: () { |
||||||
|
setState(() { |
||||||
|
checkIndex = 3; |
||||||
|
}); |
||||||
|
}, |
||||||
|
child: Row( |
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||||
|
crossAxisAlignment: CrossAxisAlignment.start, |
||||||
|
children: [ |
||||||
|
checkView(3), |
||||||
|
Spacer(), |
||||||
|
Image.asset("assets/image/icon_we_chat.png"), |
||||||
|
Padding( |
||||||
|
padding: EdgeInsets.only(left: 8.w), |
||||||
|
child: Text( |
||||||
|
S.of(context).weixinzhifu, |
||||||
|
style: TextStyle( |
||||||
|
fontSize: 14.sp, |
||||||
|
color: Color(0xff353535), |
||||||
|
fontWeight: MyFontWeight.semi_bold, |
||||||
|
), |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
), |
||||||
|
], |
||||||
|
), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
var checkIndex = 1; |
||||||
|
|
||||||
|
Widget checkView(var index) { |
||||||
|
return Container( |
||||||
|
padding: EdgeInsets.only(right: 16.w), |
||||||
|
alignment: Alignment.center, |
||||||
|
child: Image.asset( |
||||||
|
checkIndex != index |
||||||
|
? "assets/image/icon_radio_unselected.png" |
||||||
|
: "assets/image/icon_radio_selected.png", |
||||||
|
width: 15.w, |
||||||
|
height: 15.h, |
||||||
|
), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
String payChannel() { |
||||||
|
switch (widget.orderInfo.payChannel) { |
||||||
|
case 0: |
||||||
|
return "现金支付"; |
||||||
|
case 1: |
||||||
|
return "微信支付"; |
||||||
|
case 2: |
||||||
|
return "支付宝支付"; |
||||||
|
case 3: |
||||||
|
return "商户会员余额支付"; |
||||||
|
case 4: |
||||||
|
return "平台会员余额支付"; |
||||||
|
case 5: |
||||||
|
return "美团买单"; |
||||||
|
case 6: |
||||||
|
return "饿了么支付"; |
||||||
|
case 7: |
||||||
|
return "扫呗支付"; |
||||||
|
case 8: |
||||||
|
return "微生活"; |
||||||
|
case 9: |
||||||
|
return "银联支付"; |
||||||
|
} |
||||||
|
return S.of(context).yue; |
||||||
|
} |
||||||
|
} |