|
@@ -2,6 +2,7 @@ package com.hdl.xl.ui.fragments
|
|
|
|
|
|
import android.annotation.SuppressLint
|
|
|
import android.os.Bundle
|
|
|
+import android.text.TextUtils
|
|
|
import android.util.Log
|
|
|
import android.view.LayoutInflater
|
|
|
import android.view.View
|
|
@@ -24,6 +25,7 @@ import com.orhanobut.hawk.Hawk
|
|
|
import org.greenrobot.eventbus.EventBus
|
|
|
import org.greenrobot.eventbus.Subscribe
|
|
|
import org.greenrobot.eventbus.ThreadMode
|
|
|
+import java.lang.Exception
|
|
|
|
|
|
class FragmentRecommend : BaseFragment(), View.OnClickListener {
|
|
|
var mBinding: FragmentRecommendBinding? = null
|
|
@@ -67,27 +69,33 @@ class FragmentRecommend : BaseFragment(), View.OnClickListener {
|
|
|
|
|
|
@SuppressLint("CheckResult")
|
|
|
fun indexCollectionList() {
|
|
|
- HttpRetrofitRequest.retrofit(HttpApi_xie::class.java)
|
|
|
- .indexCollectionList(Hawk.get(HawkConstant.TOKEN), 0, 0)
|
|
|
- .compose(RxSchedulers.applySchedulers())
|
|
|
- .subscribe({
|
|
|
- if (it.code == 1) {
|
|
|
|
|
|
- it.data?.let { it1 -> mAdapter.addDataAll(it1) }
|
|
|
- mAdapter.notifyDataSetChanged()
|
|
|
+ HttpRetrofitRequest.retrofit(HttpApi_xie::class.java)
|
|
|
+ .indexCollectionList(Hawk.get(HawkConstant.TOKEN), 0, 0)
|
|
|
+ .compose(RxSchedulers.applySchedulers())
|
|
|
+ .subscribe({
|
|
|
+ if (it.code == 1) {
|
|
|
+
|
|
|
+ it.data?.let { it1 -> mAdapter.addDataAll(it1) }
|
|
|
+ mAdapter.notifyDataSetChanged()
|
|
|
+
|
|
|
+ mAdapter.addOnItemClickListener { view, entity, position ->
|
|
|
+ bundle.putInt("id", entity.id ?: 0)
|
|
|
+ startKtActivityOrForResult<ActivityCollectionDetail>(bundle = bundle)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ Log.e("searchGoodsDetail", it.message.toString())
|
|
|
+ })
|
|
|
+
|
|
|
|
|
|
- mAdapter.addOnItemClickListener { view, entity, position ->
|
|
|
- bundle.putInt("id", entity.id ?: 0)
|
|
|
- startKtActivityOrForResult<ActivityCollectionDetail>(bundle = bundle)
|
|
|
- }
|
|
|
- }
|
|
|
- }, {
|
|
|
- Log.e("searchGoodsDetail", it.message.toString())
|
|
|
- })
|
|
|
}
|
|
|
|
|
|
@SuppressLint("CheckResult")
|
|
|
fun CollectionCalendar() {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
HttpRetrofitRequest.retrofit(HttpApi_xie::class.java)
|
|
|
.CollectionCalendar(Hawk.get(HawkConstant.TOKEN), 0)
|
|
|
.compose(RxSchedulers.applySchedulers())
|
|
@@ -103,6 +111,7 @@ class FragmentRecommend : BaseFragment(), View.OnClickListener {
|
|
|
}, {
|
|
|
Log.e("searchGoodsDetail", it.message.toString())
|
|
|
})
|
|
|
+
|
|
|
}
|
|
|
|
|
|
override fun onClick(v: View?) {
|
|
@@ -118,4 +127,4 @@ class FragmentRecommend : BaseFragment(), View.OnClickListener {
|
|
|
fun eventBusLogin(logOutEvent: LogOutEvent) {
|
|
|
CollectionCalendar()
|
|
|
}
|
|
|
-}
|
|
|
+}
|