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