Browse Source

修复支付设置

master
王子贤 2 months ago
parent
commit
4d61326af2
1 changed files with 2 additions and 2 deletions
  1. 4
      lib/pages/setting/charge_setting.dart

4
lib/pages/setting/charge_setting.dart

@ -35,7 +35,7 @@ class _ChargeSettingState extends State<ChargeSetting> {
), ),
child: Column( child: Column(
children: [ children: [
ChargeItem(title: "消息价格设置", subTitle: "35玫瑰/分钟",),
ChargeItem(title: "消息价格设置", subTitle: "3玫瑰/条",),
Container( Container(
height: 1.w, height: 1.w,
color: const Color.fromRGBO(245, 245, 245, 1), color: const Color.fromRGBO(245, 245, 245, 1),
@ -124,7 +124,7 @@ class _ChargeItemState extends State<ChargeItem> {
}); });
Navigator.of(context).pop(); Navigator.of(context).pop();
}, },
data: [["35玫瑰/分钟"]],
data: [[widget.title == "消息价格设置" ? "3玫瑰/条" : "35玫瑰/分钟"]],
); );
}); });
} }

Loading…
Cancel
Save