Commit b0585786 authored by hujun's avatar hujun

角色页面显示

parent 00ca5331
<?php
/**
* Created by PhpStorm.
* User: fuju
* Date: 2018/1/16
* Time: 13:51
*/
namespace app\index\controller;
class Auth
{
}
\ No newline at end of file
This diff is collapsed.
<script id="watch_list_tpl" type="text/template">
[% if(it) { %]
[% for(var item in it){ %]
<tr>
<td>[%= it[item]['house_title'] %]</td>
<td>[%= it[item]['appellation'] %]</td>
<td>[%= it[item]["phone"] %]</td>
<td>[%= it[item]["expect_time"] %]</td>
<td>[%= it[item]["other_require"] %]</td>
<td>[%= it[item]["create_time"] %]</td>
<td>
<a class="btn1 btn-success " href="#modal-process" data-toggle="modal" data-id="[%= it[item]['id'] %]" onclick="alertFollow(this)">跟进</a>
<a data-toggle="modal" data-id="[%= it[item]['id'] %]"
[% if (it[item]["applies_id"] == 0){ %]
href="#modal-watch" class="btn1 btn-danger add_applies">转为报备</a>
[% }else{ %]
class="btn1 btn-info">已转为报备</a>
[% } %]
</td>
</tr>
[% } %]
[% }else{ %]
<tr>
<td colspan="8" style="text-align:center;"> 暂无数据</td>
</tr>
[% } %]
</script>
\ No newline at end of file
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