Commit 164bfadd authored by suhuiguang's avatar suhuiguang

feat(重要提醒):业务新增提醒开发联调

1.前端历史登记类型调整,格式不一样
parent 4998a2b4
...@@ -205,7 +205,7 @@ public class UseRegisterReminderAdapter extends DefaultReminder { ...@@ -205,7 +205,7 @@ public class UseRegisterReminderAdapter extends DefaultReminder {
data.put("regType", "0"); data.put("regType", "0");
} else if (formData.containsKey(SECOND) ) { // 历史有证、无证登记 } else if (formData.containsKey(SECOND) ) { // 历史有证、无证登记
data = JSONObject.parseObject(JSONObject.toJSONString(formData.get(SECOND))); data = JSONObject.parseObject(JSONObject.toJSONString(formData.get(SECOND)));
String regType = (String) formData.get(KEY_REG_TYPE); String regType = data.getString(KEY_REG_TYPE);
data.put("regType", regType); data.put("regType", regType);
} else { // 编辑 } else { // 编辑
data = new JSONObject(formData); data = new JSONObject(formData);
......
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