Commit 26138a6a by YKai

feat:m-consult组件升级

parent 0b9cc604
...@@ -6,7 +6,7 @@ ext { ...@@ -6,7 +6,7 @@ ext {
// -------------- 业务模块 -------------- // -------------- 业务模块 --------------
//第三步 若干 //第三步 若干
"m-confide" : "0.0.49.09", "m-confide" : "0.0.49.09",
"m-consultant" : "0.0.59.81", "m-consultant" : "0.0.59.82",
"m-fm" : "0.0.30.03", "m-fm" : "0.0.30.03",
"m-user" : "0.0.61.36", "m-user" : "0.0.61.36",
"m-home" : "0.0.22.65", "m-home" : "0.0.22.65",
...@@ -89,7 +89,7 @@ ext { ...@@ -89,7 +89,7 @@ ext {
//第三步 若干 //第三步 若干
"m-confide" : "0.0.49.09", "m-confide" : "0.0.49.09",
"m-consultant" : "0.0.59.81", "m-consultant" : "0.0.59.82",
"m-fm" : "0.0.30.01", "m-fm" : "0.0.30.01",
"m-user" : "0.0.61.36", "m-user" : "0.0.61.36",
"m-home" : "0.0.22.65", "m-home" : "0.0.22.65",
......
...@@ -405,15 +405,15 @@ class FilterPopupWindow( ...@@ -405,15 +405,15 @@ class FilterPopupWindow(
val text = view.tv_crowd_open.text val text = view.tv_crowd_open.text
if (text == "展开") { if (text == "展开") {
view.tv_crowd_open.text = "收起" view.tv_crowd_open.text = "收起"
view.iv_crowd_open.setBackgroundResource(R.drawable.ic_crowd_close) view.iv_crowd_open.setImageResource(R.drawable.ic_crowd_close)
for (i in 20 until goodAtViews.size){ for (i in 20 until goodAtViews.size){
goodAtViews[i].visibility = View.GONE goodAtViews[i].visibility = View.VISIBLE
} }
} else { } else {
view.tv_crowd_open.text = "展开" view.tv_crowd_open.text = "展开"
view.iv_crowd_open.setBackgroundResource(R.drawable.ic_crowd_open) view.iv_crowd_open.setImageResource(R.drawable.ic_crowd_open)
for (i in 20 until goodAtViews.size){ for (i in 20 until goodAtViews.size){
goodAtViews[i].visibility = View.VISIBLE goodAtViews[i].visibility = View.GONE
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment