瀏覽代碼

修改二手房webSite

wuweihao 3 年之前
父節點
當前提交
e20ac7ce7d

+ 2 - 1
cms_pano_fcb/gis_service/src/main/java/com/gis/service/impl/SecondHandServiceImpl.java

@@ -184,7 +184,7 @@ public class SecondHandServiceImpl extends IBaseServiceImpl<SecondHandEntity, St
 
             // todo webSite待定
             // /hengda.html?m=场景码&prodId=房车宝楼盘ID&houseId=自己维护的楼盘ID, businessType=2 (二手房)
-            String webSite = "/hengda.html?m=" + sceneCode + "&prodId=" + hengDaId + "&houseId=" + houseId + "&businessType=2";
+            String webSite = "/hengda.html?m=" + sceneCode + "&prodId=" + houseId + "&businessType=2";
             log.info("webSite: " + webSite);
             entity.setWebSite(webSite);
 
@@ -228,6 +228,7 @@ public class SecondHandServiceImpl extends IBaseServiceImpl<SecondHandEntity, St
 
     private JSONObject updateSecondHandInfoToFcb( SecondHandEntity param){
         JSONObject info = new JSONObject();
+        // 小区id
         info.put("vrGardenId", param.getHouseId());
         info.put("vrUrl", param.getWebSite());
         info.put("vrCover", param.getIcon());

+ 5 - 0
cms_pano_fcb/gis_web/src/main/java/com/gis/web/controller/CommonController.java

@@ -127,6 +127,11 @@ public class CommonController extends BaseController {
         return secondHandService.findBySceneCode(sceneCode);
     }
 
+    /**
+     * 2021-09-23
+     * @param houseId
+     * @return
+     */
     @WebControllerLog(description = "公共模块-二手房场景列表-H5")
     @ApiOperation(value = "二手房场景列表-H5", position = 1)
     @GetMapping("secondHand/list/{houseId}")