From d2c92897e22b2c1992eceaef585f967a06b6ea84 Mon Sep 17 00:00:00 2001 From: liugl <liugl@sinata.cn> Date: 星期一, 02 十一月 2020 15:59:29 +0800 Subject: [PATCH] 11.30 首页列表添加 其他数据用来展示页面 不空 --- app/src/main/java/com/okgoincar/netUtls/NetKit.kt | 25 ++++++++++++++++++++++++- 1 files changed, 24 insertions(+), 1 deletions(-) diff --git a/app/src/main/java/com/okgoincar/netUtls/NetKit.kt b/app/src/main/java/com/okgoincar/netUtls/NetKit.kt index 023a983..7dcec40 100644 --- a/app/src/main/java/com/okgoincar/netUtls/NetKit.kt +++ b/app/src/main/java/com/okgoincar/netUtls/NetKit.kt @@ -51,6 +51,12 @@ clickAction(responseString) } + override fun onError(code: Int, msg: String?, resposeString: String?) { + super.onError(code, msg, resposeString) + if (showDialog) + dismissDialog() + } + }) } @@ -69,6 +75,11 @@ override fun success(responseString: String?) { dismissDialog() clickAction(responseString) + } + + override fun onError(code: Int, msg: String?, resposeString: String?) { + super.onError(code, msg, resposeString) + dismissDialog() } }) } @@ -186,6 +197,12 @@ clickAction(responseString) } + override fun onError(code: Int, msg: String?, resposeString: String?) { + super.onError(code, msg, resposeString) + if (showDialog) + dismissDialog() + } + }) } @@ -209,6 +226,7 @@ } override fun onError(code: Int, msg: String?, resposeString: String?) { + dismissDialog() clickActionError(resposeString) } }) @@ -236,7 +254,7 @@ override fun onError(code: Int, msg: String?, resposeString: String?) { super.onError(code, msg, resposeString) - + dismissDialog() clickActionError(msg) } }) @@ -257,6 +275,10 @@ HttpManager.getInstance().post(api, map, object : MyObserver(context) { override fun success(responseString: String?) { clickAction(responseString) + } + + override fun onError(code: Int, msg: String?, resposeString: String?) { + super.onError(code, msg, resposeString) } }) } @@ -315,6 +337,7 @@ val timer by lazy { object : CountDownTimer(timeDown, 1000) { override fun onFinish() { + click(0) } override fun onTick(millisUntilFinished: Long) { -- Gitblit v1.7.1