Commit f4d1b721 authored by hujun's avatar hujun

楼盘列表修改

parent 3210b200
...@@ -185,8 +185,8 @@ class Houses extends Basic ...@@ -185,8 +185,8 @@ class Houses extends Basic
//案场权限人搜索 //案场权限人搜索
if (empty($this->params['dish'])) { if (empty($this->params['dish'])) {
/*楼盘编号*/ /*楼盘编号*/
if (!empty($params['id'])) { if (!empty($this->params['id'])) {
$where['id'] = $params['id']; $where['id'] = $this->params['id'];
} }
$where['status'] = ['<>', 3]; $where['status'] = ['<>', 3];
$data['data']['list'] = $this->house->getHouseList($pageNo, $pageSize, 'id DESC', $fields, $where, $this->userId); $data['data']['list'] = $this->house->getHouseList($pageNo, $pageSize, 'id DESC', $fields, $where, $this->userId);
......
...@@ -12,12 +12,12 @@ ...@@ -12,12 +12,12 @@
</td> </td>
<td>[%= it[item]['internal_title'] %]</td> <td>[%= it[item]['internal_title'] %]</td>
<td> <td>
[% if(it[item]["rent_price"] == 0) { %] [% if(it[item]["rent_price"] > 30000) { %]
30000以上 30000以上
[% }else if(it[item]["rent_price"] == 1) { %] [% }else if(it[item]["rent_price"] >= 10000) { %]
10000-30000 10000-30000
[% }else{ %] [% }else{ %]
10000以下 10000以下
[% } %] [% } %]
</td> </td>
<td> <td>
......
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