Browse Source

no message

dev-2.0
ZHR007 1 week ago
parent
commit
a2f77f3f5a
4 changed files with 8 additions and 8 deletions
  1. 4
      lib/pages/mine/login_page.dart
  2. 4
      lib/pages/mine/rose_page.dart
  3. 4
      lib/pages/setting/setting_page.dart
  4. 4
      lib/widget/user_agreement_dialog.dart

4
lib/pages/mine/login_page.dart

@ -191,7 +191,7 @@ class LoginPage extends StatelessWidget {
GestureDetector(
onTap: () {
//
Get.to(() => OpenWebView(url: "https://www.quzhaoqin.com/privacy.html"));
Get.to(() => OpenWebView(url: "https://dv.quzhaoqin.com/service.html"));
},
child: const Text(
'《趣恋恋用户协议》',
@ -211,7 +211,7 @@ class LoginPage extends StatelessWidget {
GestureDetector(
onTap: () {
//
Get.to(() => OpenWebView(url: "https://www.quzhaoqin.com/information.html"));
Get.to(() => OpenWebView(url: "https://dv.quzhaoqin.com/privacy.html"));
},
child: const Text(
'《隐私政策》',

4
lib/pages/mine/rose_page.dart

@ -185,7 +185,7 @@ class RosePage extends StatelessWidget {
color: Color.fromRGBO(71, 123, 255, 1)
),
recognizer: TapGestureRecognizer()..onTap = () {
Get.to(() => OpenWebView(url: "https://www.quzhaoqin.com/payment.html"));
Get.to(() => OpenWebView(url: "https://dv.quzhaoqin.com/payment.html"));
},
),
TextSpan(
@ -200,7 +200,7 @@ class RosePage extends StatelessWidget {
color: Color.fromRGBO(71, 123, 255, 1)
),
recognizer: TapGestureRecognizer()..onTap = () {
Get.to(() => OpenWebView(url: "https://www.quzhaoqin.com/information.html"));
Get.to(() => OpenWebView(url: "https://dv.quzhaoqin.com/privacy.html"));
},
),
]

4
lib/pages/setting/setting_page.dart

@ -149,7 +149,7 @@ class SettingPage extends StatelessWidget {
), onClick: (cell) {
// Get.to(() => NoticePage());
Get.to(() => OpenWebView(url: "https://www.quzhaoqin.com/privacy.html"));
Get.to(() => OpenWebView(url: "https://dv.quzhaoqin.com/service.html"));
}),
TDCell(arrow: true,
titleWidget: Text(
@ -160,7 +160,7 @@ class SettingPage extends StatelessWidget {
), onClick: (cell) {
// Get.to(() => NoticePage());
Get.to(() => OpenWebView(url: "https://www.quzhaoqin.com/information.html"));
Get.to(() => OpenWebView(url: "https://dv.quzhaoqin.com/privacy.html"));
}),
TDCell(arrow: true,
titleWidget: Text(

4
lib/widget/user_agreement_dialog.dart

@ -28,14 +28,14 @@ class _UserAgreementDialogState extends State<UserAgreementDialog> {
_userAgreementRecognizer = TapGestureRecognizer()
..onTap = () {
Get.to(() => const OpenWebView(
url: "https://www.quzhaoqin.com/privacy.html",
url: "https://dv.quzhaoqin.com/service.html",
title: "用户协议",
));
};
_privacyPolicyRecognizer = TapGestureRecognizer()
..onTap = () {
Get.to(() => const OpenWebView(
url: "https://www.quzhaoqin.com/information.html",
url: "https://dv.quzhaoqin.com/privacy.html",
title: "隐私政策",
));
};

Loading…
Cancel
Save