Sfoglia il codice sorgente

1.优化我的订单

tags/0.0.12+7
“yanghuaxuan” 3 anni fa
parent
commit
3157474860
1 ha cambiato i file con 8 aggiunte e 1 eliminazioni
  1. +8
    -1
      lib/pages/orders_page/views/order_item_widget.dart

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

@@ -260,7 +260,7 @@ class OrderItemWidget extends StatelessWidget {
Widget centerWidget;
String str1;
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,"2007-0808");

@@ -286,7 +286,14 @@ class OrderItemWidget extends StatelessWidget {
(model.reason ?? ''),
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),
);
}
}



Caricamento…
Annulla
Salva