|
|
@@ -87,7 +87,7 @@ public class DataInquiryListActivity extends BaseActivity implements View.OnClic
|
|
|
private View mGrayBackGround;
|
|
|
private RelativeLayout mTotalHideRl;
|
|
|
private Animation mInAnimation, mOutAnimation;
|
|
|
- private int mPageIndex = 1, mPagesize = 10;
|
|
|
+ private int mPageIndex = 1, mPageSize = 10;
|
|
|
private List<HistoricalRecordBean> mHistoricalRecordBeans;
|
|
|
private HistoricalRecordAdapter mHistoricalRecordAdapter;
|
|
|
private String mSearchField = "";
|
|
|
@@ -443,7 +443,7 @@ public class DataInquiryListActivity extends BaseActivity implements View.OnClic
|
|
|
JSONArray listArray = resultObject.optJSONArray("listdata");
|
|
|
JSONObject totalObject = resultObject.optJSONObject("summaryField");
|
|
|
|
|
|
- if ((listArray == null || listArray.length() < mPagesize) && mPageIndex > 1) {
|
|
|
+ if ((listArray == null || listArray.length() < mPageSize) && mPageIndex > 1) {
|
|
|
ToastMessage("已加载全部数据");
|
|
|
}
|
|
|
if (totalObject != null) {
|
|
|
@@ -1034,7 +1034,7 @@ public class DataInquiryListActivity extends BaseActivity implements View.OnClic
|
|
|
params.put("caller", mCaller);
|
|
|
params.put("id", mSchemeId);
|
|
|
params.put("pageIndex", mPageIndex);
|
|
|
- params.put("pageSize", mPagesize);
|
|
|
+ params.put("pageSize", mPageSize);
|
|
|
params.put("condition", mCondition);
|
|
|
LinkedHashMap<String, Object> headers = new LinkedHashMap<>();
|
|
|
headers.put("Cookie", "JSESSIONID=" + CommonUtil.getSharedPreferences(ct, "sessionId"));
|