|
@@ -696,18 +696,18 @@ class VipState extends State<Vip> with AutomaticKeepAliveClientMixin {
|
|
|
fontSize: 18,
|
|
|
fontWeight: FontWeight.bold),
|
|
|
),
|
|
|
- Text(
|
|
|
- '原价${moneyList[index].price}/月',
|
|
|
- style: TextStyle(
|
|
|
- color: Colours.text_gray,
|
|
|
- fontSize: 11,
|
|
|
- decoration: TextDecoration.lineThrough,
|
|
|
- decorationColor: Colours.text_gray,
|
|
|
- ),
|
|
|
- ),
|
|
|
+ // Text(
|
|
|
+ // '原价${moneyList[index].price}/月',
|
|
|
+ // style: TextStyle(
|
|
|
+ // color: Colours.text_gray,
|
|
|
+ // fontSize: 11,
|
|
|
+ // decoration: TextDecoration.lineThrough,
|
|
|
+ // decorationColor: Colours.text_gray,
|
|
|
+ // ),
|
|
|
+ // ),
|
|
|
],
|
|
|
)),
|
|
|
- (index == 0 || index == setMealList.length - 1)
|
|
|
+ (index == 0 || index == moneyList.length - 1)
|
|
|
? RoundPathWidget(
|
|
|
pathShape: PathShapeEnum.PartRoundRect,
|
|
|
leftTopRadius: 8,
|
|
@@ -939,22 +939,22 @@ class VipState extends State<Vip> with AutomaticKeepAliveClientMixin {
|
|
|
fontWeight: FontWeight.bold),
|
|
|
),
|
|
|
TextSpan(
|
|
|
- text: '/月',
|
|
|
+ text: '/${selectedRecord.period}个月',
|
|
|
style: TextStyle(
|
|
|
fontSize: 15,
|
|
|
color: Color(0xff3E3835),
|
|
|
fontWeight: FontWeight.bold),
|
|
|
),
|
|
|
- TextSpan(
|
|
|
- text: '¥${selectedRecord.price}',
|
|
|
- style: TextStyle(
|
|
|
- fontSize: 15,
|
|
|
- color: Color(0xff3E3835),
|
|
|
- fontWeight: FontWeight.bold,
|
|
|
- decoration: TextDecoration.lineThrough,
|
|
|
- decorationColor: Color(0xff3E3835),
|
|
|
- ),
|
|
|
- ),
|
|
|
+ // TextSpan(
|
|
|
+ // text: '¥${selectedRecord.price}',
|
|
|
+ // style: TextStyle(
|
|
|
+ // fontSize: 15,
|
|
|
+ // color: Color(0xff3E3835),
|
|
|
+ // fontWeight: FontWeight.bold,
|
|
|
+ // decoration: TextDecoration.lineThrough,
|
|
|
+ // decorationColor: Color(0xff3E3835),
|
|
|
+ // ),
|
|
|
+ // ),
|
|
|
],
|
|
|
),
|
|
|
),
|