Commit 9c4a3824e6969a1006400aba289f22dd06cdb577

Authored by jiangjiazhi
1 parent 416715bcc3
Exists in master and in 1 other branch dev

1

Showing 1 changed file with 16 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java View file @ 9c4a382
... ... @@ -1479,7 +1479,21 @@
1479 1479 return objectResponse;
1480 1480  
1481 1481 }
  1482 + private List getBabyServiceTypeList(){
  1483 + /* STANDARD_SERVICE(0,"儿保小助理"),
1482 1484  
  1485 + ADD_SERVICE(1,"增值服务");*/
  1486 + List<Object> list = new ArrayList<>();
  1487 + Map<String, Object> resultMap = new HashMap<>();
  1488 + resultMap.put("id", 0);
  1489 + resultMap.put("name", "儿保小助理");
  1490 + list.add(resultMap);
  1491 + Map<String, Object> resultMap2 = new HashMap<>();
  1492 + resultMap2.put("id", 1);
  1493 + resultMap2.put("name", "精准医疗指导");
  1494 + list.add(resultMap2);
  1495 + return list;
  1496 + }
1483 1497 /**
1484 1498 * 查询儿童建档页面基础数据
1485 1499 *
... ... @@ -1501,7 +1515,7 @@
1501 1515 map.put("professionType", professionTypeResults);
1502 1516  
1503 1517 //服务类型
1504   - List serviceType = ServiceTypeEnums.getServiceTypeList();
  1518 + List serviceType = getBabyServiceTypeList();
1505 1519 map.put("serviceType", serviceType);
1506 1520  
1507 1521 //服务状态