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) }