1234567891011121314151617181920212223242526272829303132333435 |
- <div class="sys_personal_index">
- <div class="modal-ctrl">
- <i class="icon icon-times"></i>
- </div>
- <div id="type" style="height:400px"></div>
- <div class="container dt-tpl">
- <div>用户流量</div>
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>时间</th>
- <th>新认领客户</th>
- <th>新认领成功客户</th>
- <th>累计认领成功客户</th>
- <th>累计认领客户</th>
- </tr>
- </thead>
- <tbody>
- <tr ch-dir="list">
- <td>{{createTime}}</td>
- <td>{{znum-count}}</td>
- <td>{{jnum-count}}</td>
- <td>{{ljnum}}</td>
- <td>{{lznum}}</td>
- </tr>
- </tbody>
- <tbody ch-dir="array.empty">
- <tr>
- <td colspan="7">表格暂无数据</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
|