更新协议方式web

This commit is contained in:
wyf
2025-08-15 14:39:01 +08:00
parent 7cffe978ae
commit 4c2728eb2e
12 changed files with 325 additions and 19 deletions

View File

@@ -337,7 +337,9 @@ class _SettingPageState extends State<SettingPage> {
padding: EdgeInsetsDirectional.fromSTEB(
40.rpx, 0.rpx, 40.rpx, 0.rpx),
onTap: () {
Get.toNamed("/userAgreementPage");
// Get.toNamed("/userAgreementPage");
Get.toNamed("/privacyPolicyPageNew",
arguments: getPrivacy(2));
},
child: Container(
child: Padding(
@@ -385,7 +387,9 @@ class _SettingPageState extends State<SettingPage> {
padding: EdgeInsetsDirectional.fromSTEB(
0.rpx, 0.rpx, 0.rpx, 0.rpx),
onTap: () {
Get.toNamed("/privacyPolicyPage");
// Get.toNamed("/privacyPolicyPage");
Get.toNamed("/userPolicyPageNew",
arguments: getPrivacy(1));
},
child: Container(
child: Padding(
@@ -568,7 +572,8 @@ class _SettingPageState extends State<SettingPage> {
AppConstants().ent_type == 1
? 'Copyright © 2022-2025 嘉兴太和信息技术有限责任公司 版权所有'
.tr
: "Copyright © 2022-2025 合肥眠花糖家具有限责任公司 版权所有".tr,
: "Copyright © 2022-2025 合肥眠花糖家具有限责任公司 版权所有"
.tr,
style: TextStyle(
color: themeController.currentColor.sc4,
fontFamily: 'Inter',

View File

@@ -1451,8 +1451,13 @@ class MHTLoginPage extends GetView<MHTLoginController> {
// "/#/pages/agreement/agreement?type=2&hideHead=true",
// btnName:
// "同意并继续");
// Get.toNamed(
// "/userAgreementPage");
Get.toNamed(
"/userAgreementPage");
"/userPolicyPageNew",
arguments:
getPrivacy(
2));
},
child: Text(
'《用户协议》'.tr,
@@ -1498,8 +1503,13 @@ class MHTLoginPage extends GetView<MHTLoginController> {
// "/#/pages/agreement/agreement?type=1&hideHead=true",
// btnName:
// "同意并继续");
// Get.toNamed(
// "/privacyPolicyPage");
Get.toNamed(
"/privacyPolicyPage");
"/privacyPolicyPageNew",
arguments:
getPrivacy(
1));
},
child: Text(
'《隐私协议》'.tr,