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