|
|
|
@ -25,9 +25,17 @@ class WorkOrderBillDialog extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Container(
|
|
|
|
|
return Align(
|
|
|
|
|
alignment: Alignment.topCenter,
|
|
|
|
|
child: Container(
|
|
|
|
|
margin: EdgeInsets.all(30.w),
|
|
|
|
|
padding: EdgeInsets.only(left: 40.w,right: 40.w,),
|
|
|
|
|
height: 430.h,
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
borderRadius: BorderRadius.circular(20.w),
|
|
|
|
|
),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
40.w.heightBox,
|
|
|
|
@ -60,7 +68,9 @@ class WorkOrderBillDialog extends StatelessWidget {
|
|
|
|
|
.sepWidget(
|
|
|
|
|
separate: 16.w.heightBox,
|
|
|
|
|
),
|
|
|
|
|
10.heightBox,
|
|
|
|
|
BeeDivider.horizontal(),
|
|
|
|
|
10.heightBox,
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
'工单总费用'
|
|
|
|
@ -82,6 +92,7 @@ class WorkOrderBillDialog extends StatelessWidget {
|
|
|
|
|
BeeLongButton(onPressed: onConfirm, text: '提醒用户支付'),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|