123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- import 'package:farmer_client/widgets/DefaultButton.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
- import 'package:fluttertoast/fluttertoast.dart';
- import 'package:get/get.dart';
- import 'package:farmer_client/widgets/Modal.dart' as modal;
-
- import '../../models/entities/OrderInfoModel.dart';
- import '../../services/orderAPI.dart';
- import '../../widgets/OrderInfoCard.dart';
- import '../../widgets/layout/BasicPage.dart';
-
- // class OrderContentInfo {
- // String title;
- // Color styleColor;
- // StyleObj ({ required this.title, required this.styleColor});
- // }
-
- class OrderPageInfo extends BasicPage {
- final id = Rx<String>('');
- final orderStateText = Rx<String>('待支付');
- final orderStateColor = Rx<Color>(Colors.black);
- final orderInfoContent = Rx<OrderInfoModel>(OrderInfoModel());
- // orderStates
-
- @override
- void beforeShow() {
- // TODO: implement beforeShow
- super.beforeShow();
- if (Get.arguments['id'] != null) {
- id(Get.arguments['id']);
-
- orderStateText(Get.arguments['title']);
- orderStateColor(Get.arguments['styleColor']);
-
- orderInfo(id()).then((value) {
- orderInfoContent(OrderInfoModel.fromJson(value));
- });
- }
- }
-
- @override
- Widget builder(BuildContext context) {
- naviTitle = '订单详情';
-
- return Column(
- children: [
- Obx(
- () => OrderInfoCard(
- item: orderInfoContent(),
- orderStateText: orderStateText(),
- orderStateColor: orderStateColor()),
- ),
- // Obx(() => _BottomWidget(id: id())),
-
- Obx(
- () => Container(
- padding: EdgeInsets.fromLTRB(15, 50.w, 15, 0),
- child: _bottomJudgment(id.value)),
- ),
- ],
- );
- }
-
- Widget _bottomJudgment(String id) {
- return orderStateText.value == '已完成'
- ? Text('')
- : orderStateText.value == '进行中'
- ? Text('')
- : orderStateText.value == '待评价'
- ? DefaultButton(
- color: const Color(0xffffffff),
- backColor: const Color(0xFFFF703B),
- width: 300.w,
- height: 49.h,
- text: '评价',
- onPressed: () {
- Fluttertoast.showToast(msg: '评价成功!');
- Get.offNamed('/order');
- },
- margin: const EdgeInsets.all(0),
- fontSize: 20.sp,
- radius: 24.5.w,
- )
- : orderStateText.value == '待作业'
- ? DefaultButton(
- color: const Color(0xffffffff),
- backColor: const Color(0xFFFF703B),
- width: 300.w,
- height: 49.h,
- text: '退单',
- onPressed: () {
- modal.showDialog(
- title: '提示',
- content: Container(
- alignment: Alignment.center,
- child: Text('确定要申请退单吗?'),
- ),
- onCancel: () => true,
- onConfirm: () => {
- orderRefund(id).then((value) {
- Fluttertoast.showToast(msg: '退单成功!');
- Get.offNamed('/order');
- }),
- });
- },
- margin: const EdgeInsets.all(0),
- fontSize: 20.sp,
- radius: 24.5.w,
- )
- : orderStateText.value == '已付款'
- ? DefaultButton(
- color: const Color(0xffffffff),
- backColor: const Color(0xFFFF703B),
- width: 300.w,
- height: 49.h,
- text: '退单',
- onPressed: () {
- modal.showDialog(
- title: '提示',
- content: Container(
- alignment: Alignment.center,
- child: Text('确定要申请退单吗?'),
- ),
- onCancel: () => true,
- onConfirm: () => {
- orderRefund(id).then((value) {
- Fluttertoast.showToast(msg: '退单成功!');
- Get.offNamed('/order');
- }),
- });
- },
- margin: const EdgeInsets.all(0),
- fontSize: 20.sp,
- radius: 24.5.w,
- )
- : orderStateText.value == '待付款'
- ? _BottomWidget(
- id: id,
- )
- : orderStateText.value == '已退单'
- ? Text('')
- : orderStateText.value == '退单申请中'
- ? Text(orderStateText.value)
- : Text('');
- }
- }
-
- class _BottomWidget extends StatelessWidget {
- final id;
- final resultMessage = Rx<String>('---');
-
- _BottomWidget({Key? key, required this.id}) : super(key: key);
-
- void _orderDeletels() {
- modal.showDialog(
- title: '提示',
- content: Container(
- alignment: Alignment.center,
- child: Text('确定要取消此订单吗?'),
- ),
- onCancel: () => true,
- onConfirm: () => {
- orderDelete(id).then((value) {
- Fluttertoast.showToast(msg: '订单取消成功!');
- Get.offNamed('/order');
- })
- });
- }
-
- //显示底部弹框的功能
- void showBottomSheet(context) {
- //用于在底部打开弹框的效果
- showModalBottomSheet(
- context: context,
- isScrollControlled: false,
- backgroundColor: Colors.white,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(10))),
- builder: (BuildContext context) {
- return Container(
- height: 200.w, //对话框高度就是此高度
- child: Center(
- child: Column(
- children: [
- Padding(
- padding: EdgeInsets.fromLTRB(0, 25.w, 0, 34.w),
- child: Text(
- "支付方式",
- style:
- TextStyle(fontSize: 17.sp, fontWeight: FontWeight.bold),
- ),
- ),
- Padding(
- padding: EdgeInsets.fromLTRB(15.w, 0, 15.w, 0),
- child: ListTile(
- contentPadding: EdgeInsets.symmetric(horizontal: 0.0),
- // 这边使用了contentPadding
- leading: Image(
- image: AssetImage('images/alipay.png'),
- width: 30.w,
- height: 30.w,
- ),
- title: Transform(
- transform: Matrix4.translationValues(-15, 0.0, 0.0),
- child: Text("支付宝",
- style: TextStyle(
- fontSize: 18.sp, color: Color(0xff333333))),
- ),
- trailing: Image(
- image: AssetImage('images/userRight.png'),
- width: 10.w,
- height: 18.w,
- ),
- ),
- ),
- Padding(
- padding: EdgeInsets.fromLTRB(15.w, 0, 15.w, 0),
- child: ListTile(
- onTap: (){
-
- },
- contentPadding: EdgeInsets.symmetric(horizontal: 0.0),
- // 这边使用了contentPadding
- leading: Image(
- image: AssetImage('images/weChatPay.png'),
- width: 30.w,
- height: 30.w,
- ),
- title: Transform(
- transform: Matrix4.translationValues(-15, 0.0, 0.0),
- child: Text("微信",
- style: TextStyle(
- fontSize: 18.sp, color: Color(0xff333333))),
- ),
- trailing: Image(
- image: AssetImage('images/userRight.png'),
- width: 10.w,
- height: 18.w,
- ),
- ),
- ),
- ],
- )),
- );
- });
- }
-
- @override
- Widget build(BuildContext context) {
- return Container(
- alignment: Alignment.bottomCenter,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- SizedBox(
- width: 150.w,
- height: 49.h,
- child: ElevatedButton(
- onPressed: () {
- _orderDeletels();
- },
- child: const Text(
- "取消",
- style: TextStyle(
- fontSize: 18,
- color: Color(0xFFFF703B),
- fontWeight: FontWeight.bold),
- ),
- style: ButtonStyle(
- side: MaterialStateProperty.all(
- BorderSide(width: 1, color: Color(0xFFFF703B))), //边框
- elevation: MaterialStateProperty.all(0),
- backgroundColor: MaterialStateProperty.all(Colors.white),
- shape: MaterialStateProperty.all(
- RoundedRectangleBorder(
- borderRadius: BorderRadius.all(Radius.circular(24.4))),
- ),
- ),
- ),
- ),
- SizedBox(
- child: DefaultButton(
- color: const Color(0xffffffff),
- backColor: const Color(0xFFFF703B),
- width: 150.w,
- height: 49.h,
- text: '支付',
- onPressed: () {
- showBottomSheet(context);
- // Fluttertoast.showToast(msg: '支付成功!');
- // Get.offAllNamed('/');
- },
- margin: const EdgeInsets.all(0),
- fontSize: 20.sp,
- radius: 24.5.w,
- ),
- ),
- ],
- ),
- );
- }
- }
|