排程详情

This commit is contained in:
fengjignqi
2026-05-26 14:25:41 +08:00
parent 1ed3a68a5e
commit 5ca81f565a
12 changed files with 212 additions and 36 deletions

View File

@@ -50,7 +50,9 @@ public class WaterPlanFragment extends BaseFragment<WaterPlanFragmentBinding, Wa
mAdapter.setOnItemClickListener(new BaseQuickAdapter.OnItemClickListener() {
@Override
public void onItemClick(BaseQuickAdapter adapter, View view, int position) {
goTo(mContext, PlanDetailActivity.class,null);
Bundle bundle = new Bundle();
bundle.putSerializable("plan_entity",mPlanList.get(position));
goTo(mContext, PlanDetailActivity.class,bundle);
}
});
showLoadingDialog();
@@ -114,4 +116,9 @@ public class WaterPlanFragment extends BaseFragment<WaterPlanFragmentBinding, Wa
public void updateConfigSuccess(WaterPlanWeekEntity entity) {
}
@Override
public void getPlanDetailInfo(WaterPlanWeekEntity entity) {
}
}