华为升级申请被驳回--增值服务购买无效

This commit is contained in:
sky.min 2025-12-15 17:27:24 +08:00
parent dab98aef62
commit 604e7709f1
4 changed files with 67 additions and 63 deletions

View File

@ -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,
),

View File

@ -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'),

View File

@ -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)))),
// ),
],
),
),

View File

@ -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('')
],
),
),