app/src/main/java/cn/flightfeather/thirdapp/module/inspectioninfo/ProblemChangeFragment.java
@@ -47,7 +47,6 @@
 * 本fragment有两种问题状态,已整改{@link Constant#UNCHANGED}和未整改{@link Constant#CHANGED}
 */
public class ProblemChangeFragment extends Fragment {
    //<editor-fold desc="全局变量">
    public static final String ARG_PARAM1 = "problems";
    public static final String ARG_PARAM2 = "fragmentType";
    public static final int REQUEST_CODE_SUBMIT = 11;
@@ -57,9 +56,7 @@
    private String fragmentType;
    private MediafileDao mediafileDao;
    private Unbinder unbinder;
    //</editor-fold>
    //<editor-fold desc="constructor">
    public ProblemChangeFragment() {
        // Required empty public constructor
    }
@@ -72,9 +69,7 @@
        fragment.setArguments(args);
        return fragment;
    }
    //</editor-fold>
    //<editor-fold desc="lifecycle">
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
@@ -124,16 +119,14 @@
            unbinder.unbind();
        }
    }
    //</editor-fold>
    //<editor-fold desc="初始化数据库">
    //初始化数据库
    private void initDataBase() {
        DaoSession daoSession = application.getDaoSession();
        mediafileDao = daoSession.getMediafileDao();
    }
    //</editor-fold>
    //<editor-fold desc="initView">
    //initView
    @BindView(R.id.rv_content) RecyclerView rv_rank_content;
    @BindView(R.id.image_problem_complete) ImageView image_problem_complete;
    AllRecyclerViewAdapter<ProblemlistVo> adapter;
@@ -352,9 +345,8 @@
        }
    }
    //</editor-fold>
    //<editor-fold desc="点击事件">
    //点击事件
    class OnProblemDetailClickListener implements View.OnClickListener {
        private ProblemlistVo problemlistVo;
@@ -391,9 +383,8 @@
            startActivityForResult(intent, REQUEST_CODE_SUBMIT, optionsCompat.toBundle());
        }
    }
    //</editor-fold>
    //<editor-fold desc="更新列表">
    //更新列表
    public void notifyDataSetChanged() {
//        this.problemlistVos.clear();
//        this.problemlistVos.addAll(p);
@@ -404,5 +395,4 @@
        }
        adapter.notifyDataSetChanged();
    }
    //</editor-fold>
}