12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <{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">
- <form method="post" action="/?a=send_sms_admin&m=didquery" >
- <div style="margin-left:20px;float:left;margin-bottom:20px;margin-right:20px;">
- 手机号码:<input type="text" name="tel" value="<{$tel}>" style="width:200px;">
- </div>
- <div style="clear:both;margin-left:20px;">
- <input type="submit" class="btn btn-info" value="查询" style="clear:both;height: 30px; width: 260px; "/>
- </div>
- </form>
- <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>
|