Commit 1f51cf7d authored by agping's avatar agping

3

parent 23fa7543
...@@ -320,6 +320,7 @@ ...@@ -320,6 +320,7 @@
<th class="text-center">楼盘名称</th> <th class="text-center">楼盘名称</th>
<th class="text-center">总层数</th> <th class="text-center">总层数</th>
<th class="text-center">楼盘简介</th> <th class="text-center">楼盘简介</th>
<th class="text-center">状态</th>
<th class="text-center">操作</th> <th class="text-center">操作</th>
</tr> </tr>
</thead> </thead>
......
...@@ -129,11 +129,11 @@ require(['vue', 'vconsole', 'html2canvas', 'css!style/report_achieve.css', 'jque ...@@ -129,11 +129,11 @@ require(['vue', 'vconsole', 'html2canvas', 'css!style/report_achieve.css', 'jque
dianpingLength = _data.data.store_list.length; dianpingLength = _data.data.store_list.length;
if(_data.data.store_list){ if(_data.data.store_list){
$.each(_data.data.store_list,function(i,item){ $.each(_data.data.store_list,function(i,item){
_this.duandui_fangyuan += item.house_num; _this.duandui_fangyuan += item.house_num*1;
_this.duandui_keyuan += item.user_num; _this.duandui_keyuan += item.user_num*1;
_this.duandui_daikan += item.follow_up_num; _this.duandui_daikan += item.follow_up_num*1;
_this.duandui_yeji += item.performance_week; _this.duandui_yeji += item.performance_week*1;
_this.duandui_shishou += item.practical_money; _this.duandui_shishou += item.practical_money*1;
}); });
} }
......
...@@ -23,6 +23,15 @@ ...@@ -23,6 +23,15 @@
<td style="width: 10%;">[%= it[item]['title'] %]</td> <td style="width: 10%;">[%= it[item]['title'] %]</td>
<td style="width: 10%;">[%= it[item]['floor_total'] %]</td> <td style="width: 10%;">[%= it[item]['floor_total'] %]</td>
<td style="width: 30%;">[%= it[item]['intro'] %]</td> <td style="width: 30%;">[%= it[item]['intro'] %]</td>
<td>
[% if(it[item]["status"] == 0) { %]
待审批
[% }else if (it[item]["status"] == 1){ %]
有效
[% }else if (it[item]["status"] == 2){ %]
无效
[% } %]
</td>
<td> <td>
<a class="btn1 btn-success edit" href="#modal_add_loupan" data-toggle="modal" data-id='[%= it[item]["id"] %]'>编辑</a> <a class="btn1 btn-success edit" href="#modal_add_loupan" data-toggle="modal" data-id='[%= it[item]["id"] %]'>编辑</a>
......
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