Commit b96239e1 authored by hujun's avatar hujun

商铺新增字段

parent 82ab2ae9
......@@ -237,6 +237,26 @@ class GHousesExt extends BaseModel
$save_data['source'] = $data['source'];
}
//周边配套
if (isset($data['rim_mating'])) {
$save_data['source'] = $data['rim_mating'];
}
//所属地段
if (isset($data['section'])) {
$save_data['section'] = $data['section'];
}
//附近人流
if (isset($data['crowd'])) {
$save_data['crowd'] = $data['crowd'];
}
//其它
if (isset($data['other'])) {
$save_data['other'] = $data['other'];
}
$ext_id = $this->where('house_id', $house_id)->value('id');
if ($ext_id > 0) {
......
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