1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <{include file='../public/admin_header.html'}>
- <{include file='../public/admin_navi.html'}>
- <!-- Right side column. Contains the navbar and content of the page -->
- <aside class="right-side">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- 客户回执记录查询
- <small>Control panel</small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
- <li class="active">Blank page</li>
- </ol>
- </section>
- <!-- Main content -->
- <section class="content">
- <div class="span9">
- <div id='main' class="form-actions">
- <!--<a href="/?a=sms_template_admin&m=add" style="font-weight:bold;text-decoration:underline;">添加短信模板</a>-->
- <div style="height:20px;"></div>
- <table class="table table-striped" style="margin-top:15px;">
- <tr>
- <th>ID</th>
- <th>站点</th>
- <th>发送人</th>
- <th>接收人</th>
- <th >发送内容</th>
- <th>发送时间</th>
- <th>状态</th>
- </tr>
- <{foreach from=$list item=item}>
- <tr>
- <td><{$item.id}></td>
- <td><{$item.uname}></td>
- <td><{$item.from_phone}></td>
- <td><{$item.did_mobile}></td>
- <td><{$item.content}></td>
- <td><{$item.receive_time}></td>
- <td <{if $item.status==2}>style="color:red;"<{/if}>
- <{if $item.status==3}>style="color:green;"<{/if}>><{$status_array[$item.status]}></td>
- </tr>
- <{/foreach}>
- </table>
- <{$show}>
- </div>
- </div>
- </section><!-- /.content -->
- </aside><!-- /.right-side -->
- </div><!-- ./wrapper -->
- <style>
- select{height:30px;}
- </style>
- <script>
- $('#treeview11').addClass('active');
- $(".send_sms_admin").addClass('active');
- </script>
- </body>
- </html>
|