Browse Source

1.优化我的订单

tags/0.0.12+7
“yanghuaxuan” 3 years ago
parent
commit
3157474860
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      lib/pages/orders_page/views/order_item_widget.dart

+ 8
- 1
lib/pages/orders_page/views/order_item_widget.dart View File

@@ -260,7 +260,7 @@ class OrderItemWidget extends StatelessWidget {
Widget centerWidget; Widget centerWidget;
String str1; String str1;
String str2; String str2;
if (state.type == '3' || state.type == '4') {
if (state.type == '3' || state.type == '4' || state.type == '5') {
// state?.tips=(state?.tips ?? '').replaceAll(state?.tipsReplaceKey,model?.reason); // state?.tips=(state?.tips ?? '').replaceAll(state?.tipsReplaceKey,model?.reason);
// state?.tips=(state?.tips ?? '').replaceAll(state?.tipsReplaceKey,"2007-0808"); // state?.tips=(state?.tips ?? '').replaceAll(state?.tipsReplaceKey,"2007-0808");


@@ -286,7 +286,14 @@ class OrderItemWidget extends StatelessWidget {
(model.reason ?? ''), (model.reason ?? ''),
style: TextStyle(color: HexColor.fromHex(state?.tipsReplaceColor ?? ""), fontSize: 10), style: TextStyle(color: HexColor.fromHex(state?.tipsReplaceColor ?? ""), fontSize: 10),
); );
}


///失效原因
if (state.type == '5') {
centerWidget = Text(
(model.settleAt ?? ''),
style: TextStyle(color: HexColor.fromHex(state?.tipsReplaceColor ?? ""), fontSize: 10),
);
} }
} }




Loading…
Cancel
Save