Commit e9923f1c authored by 小费同学阿's avatar 小费同学阿 💬 Committed by 杨秀秀

68120 【商户app-android】诉求反馈,被驳回的诉求,在查看详情页面中需要在顶部增加一个驳回原因的信息,点击【查看】弹框显示驳回原因(参考IOS)

parent 3f1b8e49
......@@ -14,8 +14,8 @@ class RejectionDialog(context: Context, private val rejectionReason: String) : x
override fun InitView(): DialogSet {
return DialogSet(
R.layout.dialog_rejection_reason, true,
Gravity.CENTER, true, WindowManager.LayoutParams.MATCH_PARENT,
AutoSizeUtils.dp2px(context, 216.0F)
Gravity.CENTER_VERTICAL, true, WindowManager.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.WRAP_CONTENT
)
}
......
......@@ -13,6 +13,10 @@
<import type="me.goldze.mvvmhabit.binding.viewadapter.recyclerview.LineManagers" />
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
......@@ -81,4 +85,5 @@
</RelativeLayout>
</LinearLayout>
</layout>
\ No newline at end of file
......@@ -186,6 +186,7 @@ public class AppealHandleViewModel extends BaseViewModel<AppealRequest> {
@Override
public void onSuccess(Boolean resultBean) {
finish();
startActivity(AppealListActivity.class);
}
@Override
......
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