华为升级申请被驳回--增值服务购买无效
This commit is contained in:
parent
dab98aef62
commit
604e7709f1
@ -107,28 +107,29 @@ class _ValueAddedServicesHighFunctionPageState
|
|||||||
child: Row(
|
child: Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
GestureDetector(
|
// 华为上架bug
|
||||||
onTap: () {
|
// GestureDetector(
|
||||||
Get.toNamed(Routers.advancedFeaturesWebPage,
|
// onTap: () {
|
||||||
arguments: <String, int>{
|
// Get.toNamed(Routers.advancedFeaturesWebPage,
|
||||||
'webBuyType': XSConstantMacro.webBuyTypeVip,
|
// arguments: <String, int>{
|
||||||
});
|
// 'webBuyType': XSConstantMacro.webBuyTypeVip,
|
||||||
},
|
// });
|
||||||
child: Container(
|
// },
|
||||||
// width: 110.w,
|
// child: Container(
|
||||||
// height: 50.h,
|
// // width: 110.w,
|
||||||
padding: EdgeInsets.only(left: 20.w, right: 20.w, top: 8.h, bottom: 8.h),
|
// // height: 50.h,
|
||||||
decoration: BoxDecoration(
|
// padding: EdgeInsets.only(left: 20.w, right: 20.w, top: 8.h, bottom: 8.h),
|
||||||
color: const Color(0xFFBDCDDF),
|
// decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.all(Radius.circular(30.h)),
|
// color: const Color(0xFFBDCDDF),
|
||||||
),
|
// borderRadius: BorderRadius.all(Radius.circular(30.h)),
|
||||||
child: Center(
|
// ),
|
||||||
child: Text(
|
// child: Center(
|
||||||
'购买'.tr,
|
// child: Text(
|
||||||
style: TextStyle(fontSize: 22.sp),
|
// '购买'.tr,
|
||||||
)),
|
// style: TextStyle(fontSize: 22.sp),
|
||||||
),
|
// )),
|
||||||
),
|
// ),
|
||||||
|
// ),
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 10.w,
|
width: 10.w,
|
||||||
),
|
),
|
||||||
|
|||||||
@ -51,12 +51,12 @@ class _ValueAddedServicesPageListState
|
|||||||
Get.toNamed(Routers.valueAddedServicesNoteAndEmailDetailPage,
|
Get.toNamed(Routers.valueAddedServicesNoteAndEmailDetailPage,
|
||||||
arguments: <String, int>{'type': 1});
|
arguments: <String, int>{'type': 1});
|
||||||
}),
|
}),
|
||||||
// _valueAddedServicesItem(
|
_valueAddedServicesItem(
|
||||||
// Image.asset('images/mine/icon_mine_valueAddedServices_email.png'),
|
Image.asset('images/mine/icon_mine_valueAddedServices_email.png'),
|
||||||
// '邮件'.tr, () {
|
'邮件'.tr, () {
|
||||||
// Get.toNamed(Routers.valueAddedServicesNoteAndEmailDetailPage,
|
Get.toNamed(Routers.valueAddedServicesNoteAndEmailDetailPage,
|
||||||
// arguments: <String, int>{'type': 2});
|
arguments: <String, int>{'type': 2});
|
||||||
// }),
|
}),
|
||||||
_valueAddedServicesItem(
|
_valueAddedServicesItem(
|
||||||
Image.asset(
|
Image.asset(
|
||||||
'images/mine/icon_mine_valueAddedServices_realName.png'),
|
'images/mine/icon_mine_valueAddedServices_realName.png'),
|
||||||
|
|||||||
@ -81,26 +81,27 @@ class _ValueAddedServicesNoteAndEmailDetailPageState
|
|||||||
'${'当前剩余数量'.tr}:${state.remainCount.value}',
|
'${'当前剩余数量'.tr}:${state.remainCount.value}',
|
||||||
style: TextStyle(fontSize: 24.sp),
|
style: TextStyle(fontSize: 24.sp),
|
||||||
))),
|
))),
|
||||||
GestureDetector(
|
// 华为发布bug
|
||||||
onTap: () {
|
// GestureDetector(
|
||||||
Get.toNamed(Routers.advancedFeaturesWebPage,
|
// onTap: () {
|
||||||
arguments: <String, int>{
|
// Get.toNamed(Routers.advancedFeaturesWebPage,
|
||||||
'webBuyType': state.selectType.value == 1
|
// arguments: <String, int>{
|
||||||
? XSConstantMacro.webBuyTypeSMS
|
// 'webBuyType': state.selectType.value == 1
|
||||||
: XSConstantMacro.webBuyTypeEmail,
|
// ? XSConstantMacro.webBuyTypeSMS
|
||||||
});
|
// : XSConstantMacro.webBuyTypeEmail,
|
||||||
},
|
// });
|
||||||
child: Container(
|
// },
|
||||||
width: 50,
|
// child: Container(
|
||||||
height: 25,
|
// width: 50,
|
||||||
decoration: BoxDecoration(
|
// height: 25,
|
||||||
color: AppColors.mainColor,
|
// decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(25)),
|
// color: AppColors.mainColor,
|
||||||
child: Center(
|
// borderRadius: BorderRadius.circular(25)),
|
||||||
child: Text('购买'.tr,
|
// child: Center(
|
||||||
style: TextStyle(
|
// child: Text('购买'.tr,
|
||||||
color: Colors.white, fontSize: 24.sp)))),
|
// style: TextStyle(
|
||||||
),
|
// color: Colors.white, fontSize: 24.sp)))),
|
||||||
|
// ),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@ -92,21 +92,23 @@ class _ValueAddedServicesRealNamePageState
|
|||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Colors.black, fontSize: 24.sp)))),
|
color: Colors.black, fontSize: 24.sp)))),
|
||||||
),
|
),
|
||||||
GestureDetector(
|
// 华为上架bug
|
||||||
onTap: () {
|
// GestureDetector(
|
||||||
Get.toNamed(Routers.advancedFeaturesWebPage, arguments: {
|
// onTap: () {
|
||||||
'webBuyType': XSConstantMacro.webBuyTypeAuth,
|
// Get.toNamed(Routers.advancedFeaturesWebPage, arguments: {
|
||||||
});
|
// 'webBuyType': XSConstantMacro.webBuyTypeAuth,
|
||||||
},
|
// });
|
||||||
child: Container(
|
// },
|
||||||
width: 200.w,
|
// child: Container(
|
||||||
color: Colors.transparent,
|
// width: 200.w,
|
||||||
child: Center(
|
// color: Colors.transparent,
|
||||||
child: Text('购买'.tr,
|
// child: Center(
|
||||||
style: TextStyle(
|
// child: Text('购买'.tr,
|
||||||
color: AppColors.mainColor,
|
// style: TextStyle(
|
||||||
fontSize: 24.sp)))),
|
// color: AppColors.mainColor,
|
||||||
),
|
// fontSize: 24.sp)))),
|
||||||
|
// ),
|
||||||
|
Text('')
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user