From 417542f6adbb26638e3c2073bad4aefbdcfe0b80 Mon Sep 17 00:00:00 2001 From: wlh <646507849@qq.com> Date: Thu, 25 Apr 2024 09:30:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AD=E5=BB=BA365-oppo=E8=BF=87=E5=AE=A1?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/java/com/zj365/dc/weight/PrevDialog.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/main/java/com/zj365/dc/weight/PrevDialog.kt b/app/src/main/java/com/zj365/dc/weight/PrevDialog.kt index e22db50..94e4db3 100644 --- a/app/src/main/java/com/zj365/dc/weight/PrevDialog.kt +++ b/app/src/main/java/com/zj365/dc/weight/PrevDialog.kt @@ -41,6 +41,7 @@ class PrevDialog(context: Context, private var agree: () -> Unit, private var gi val bundle = Bundle() bundle.clear() bundle.putString("title", "用户协议") + bundle.putBoolean("isAgree", false) bundle.putString("url","https://dc.zhongjian365.com/agreement.html") RouteManager.goAct(ARouterUrl.AGREEMNT_READ_WEB_ACT, bundle) } @@ -56,6 +57,8 @@ class PrevDialog(context: Context, private var agree: () -> Unit, private var gi override fun onClick(widget: View) { val bundle = Bundle() bundle.putString("title", "隐私政策") + bundle.putBoolean("isAgree", false) + bundle.putString("url", "https://dc.zhongjian365.com/privacy.html") RouteManager.goAct(ARouterUrl.AGREEMNT_READ_WEB_ACT, bundle) }