zhongrj
2023-12-08 95b938586c9a6b0fe0d57157a999a999c33a0c48
src/main/java/org/springblade/modules/life/controller/LifeController.java
@@ -100,7 +100,7 @@
      life.setRoll("0");
      life.setGd("0");
//      String url = "http://192.168.0.115:8080/#/mobileLayout/default";
//      //String url = "http://171.34.197.243:786/#/mobileLayout/default";
//      //String url = "https://dev.jxpskj.com:8023/zhjg/#/mobileLayout/default";
//      String gotos = URLEncoder.encode("arc", "UTF-8");
//      String mechanismname = URLEncoder.encode(life.getMechanismname(), "UTF-8");
//      String address = null;
@@ -185,12 +185,12 @@
   /**
    * 标签
    *
    * @param lifetype 生活设施类型
    * @param life 生活设施类型
    * @return
    */
   @GetMapping("/selectList")
   public R selectList(String lifetype) {
      return R.data(lifeService.selectList(lifetype));
   public R selectList(LifeVO life) {
      return R.data(lifeService.selectList(life));
   }
}