|
@@ -18,6 +18,7 @@ import com.yingyangfly.baselib.ext.toast
|
|
import com.yingyangfly.baselib.mvvm.BaseTvMVVMActivity
|
|
import com.yingyangfly.baselib.mvvm.BaseTvMVVMActivity
|
|
import com.yingyangfly.baselib.player.VoicePlayer
|
|
import com.yingyangfly.baselib.player.VoicePlayer
|
|
import com.yingyangfly.baselib.router.RouterUrlCommon
|
|
import com.yingyangfly.baselib.router.RouterUrlCommon
|
|
|
|
+import com.yingyangfly.baselib.utils.CommonUtils
|
|
import com.yingyangfly.baselib.utils.GlideImgUtil
|
|
import com.yingyangfly.baselib.utils.GlideImgUtil
|
|
import com.yingyangfly.baselib.utils.JumpUtil
|
|
import com.yingyangfly.baselib.utils.JumpUtil
|
|
import com.yingyangfly.baselib.utils.LiveEventBusUtil
|
|
import com.yingyangfly.baselib.utils.LiveEventBusUtil
|
|
@@ -149,26 +150,34 @@ class HospitalActivity : BaseTvMVVMActivity<ActivityHospitalBinding, HospitalVie
|
|
}
|
|
}
|
|
|
|
|
|
R.id.searchLayout -> {
|
|
R.id.searchLayout -> {
|
|
- if (loginJudge()) {
|
|
|
|
- JumpUtil.jumpActivity(RouterUrlCommon.evaluationHistory)
|
|
|
|
|
|
+ if (CommonUtils.isFastClick) {
|
|
|
|
+ if (loginJudge()) {
|
|
|
|
+ JumpUtil.jumpActivity(RouterUrlCommon.evaluationHistory)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
R.id.otherEvaluationsLayout -> {
|
|
R.id.otherEvaluationsLayout -> {
|
|
- if (loginJudge()) {
|
|
|
|
- JumpUtil.jumpActivity(RouterUrlCommon.otherEvaluation)
|
|
|
|
|
|
+ if (CommonUtils.isFastClick) {
|
|
|
|
+ if (loginJudge()) {
|
|
|
|
+ JumpUtil.jumpActivity(RouterUrlCommon.otherEvaluation)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
R.id.mocaLayout -> {
|
|
R.id.mocaLayout -> {
|
|
- if (loginJudge()) {
|
|
|
|
- getReviewTaskList("MOCA", "0")
|
|
|
|
|
|
+ if (CommonUtils.isFastClick) {
|
|
|
|
+ if (loginJudge()) {
|
|
|
|
+ getReviewTaskList("MOCA", "0")
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
R.id.mmseLayout -> {
|
|
R.id.mmseLayout -> {
|
|
- if (loginJudge()) {
|
|
|
|
- getReviewTaskList("MMSE", "0")
|
|
|
|
|
|
+ if (CommonUtils.isFastClick) {
|
|
|
|
+ if (loginJudge()) {
|
|
|
|
+ getReviewTaskList("MMSE", "0")
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|