|
|
|
@ -172,7 +172,7 @@ class MyWalletPage extends StatelessWidget { |
|
|
|
), |
|
|
|
), |
|
|
|
Text( |
|
|
|
"${controller.walletData.value.id != null ? controller.walletData.value.availableWithdrawBalance?.toStringAsFixed(2) : "0.00"}", |
|
|
|
"${controller.walletData.value.id != null ? (controller.visibility.value ? controller.walletData.value.availableWithdrawBalance?.toStringAsFixed(2) : controller.walletData.value.availableWithdrawBalance?.toStringAsFixed(2).replaceAll(RegExp(r'\d'), '*')) : (controller.visibility.value ? "0.00" : "*.**")}", |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 13.w, |
|
|
|
color: Colors.white, |
|
|
|
@ -201,7 +201,7 @@ class MyWalletPage extends StatelessWidget { |
|
|
|
), |
|
|
|
), |
|
|
|
Text( |
|
|
|
"${controller.walletData.value.id != null ? controller.walletData.value.settlementBalance?.toStringAsFixed(2) : "0.00"}", |
|
|
|
"${controller.walletData.value.id != null ? (controller.visibility.value ? controller.walletData.value.settlementBalance?.toStringAsFixed(2) : controller.walletData.value.settlementBalance?.toStringAsFixed(2).replaceAll(RegExp(r'\d'), '*')) : (controller.visibility.value ? "0.00" : "*.**")}", |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 13.w, |
|
|
|
color: Colors.white, |
|
|
|
@ -230,7 +230,7 @@ class MyWalletPage extends StatelessWidget { |
|
|
|
), |
|
|
|
), |
|
|
|
Text( |
|
|
|
"${controller.walletData.value.id != null ? controller.walletData.value.frozenBalance?.toStringAsFixed(2) : "0.00"}", |
|
|
|
"${controller.walletData.value.id != null ? (controller.visibility.value ? controller.walletData.value.frozenBalance?.toStringAsFixed(2) : controller.walletData.value.frozenBalance?.toStringAsFixed(2).replaceAll(RegExp(r'\d'), '*')) : (controller.visibility.value ? "0.00" : "*.**")}", |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 13.w, |
|
|
|
color: Colors.white, |
|
|
|
@ -342,7 +342,7 @@ class _InfoItemState extends State<InfoItem> { |
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
|
|
|
children: [ |
|
|
|
Text( |
|
|
|
"订单类型:${widget.item.tradeType == 101 ? "嘉宾实名认证" : |
|
|
|
"类型:${widget.item.tradeType == 101 ? "嘉宾实名认证" : |
|
|
|
widget.item.tradeType == 102 ? "发布悬赏招亲" : |
|
|
|
widget.item.tradeType == 103 ? "匹配悬赏招亲" : |
|
|
|
widget.item.tradeType == 104 ? "红娘入驻推荐" : |
|
|
|
@ -385,12 +385,18 @@ class _InfoItemState extends State<InfoItem> { |
|
|
|
], |
|
|
|
), |
|
|
|
if(widget.item.remark != null && widget.item.remark != "")SizedBox(height: 8.w,), |
|
|
|
if(widget.item.remark != null && widget.item.remark != "")Text( |
|
|
|
"${widget.item.remark ?? ""}", |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 12.w, |
|
|
|
color: const Color.fromRGBO(153, 153, 153, 1) |
|
|
|
), |
|
|
|
if(widget.item.remark != null && widget.item.remark != "")Row( |
|
|
|
children: [ |
|
|
|
Expanded( |
|
|
|
child: Text( |
|
|
|
"${widget.item.remark ?? ""}", |
|
|
|
style: TextStyle( |
|
|
|
fontSize: 12.w, |
|
|
|
color: const Color.fromRGBO(153, 153, 153, 1) |
|
|
|
), |
|
|
|
), |
|
|
|
) |
|
|
|
], |
|
|
|
), |
|
|
|
SizedBox(height: 8.w,), |
|
|
|
Row( |
|
|
|
|