| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <include file="Public:header"/>
- <div id="main-content">
- <div id="top-alert" class="fixed alert alert-error" style="display: none;">
- <button class="close fixed" style="margin-top: 4px;">×</button>
- <div class="alert-content">警告内容</div>
- </div>
- <div id="main" class="main">
- <div class="main-title-h">
- <span class="h1-title">发送通知记录</span>
- <div class="fr">
- <button class="btn btn-warning" onClick="location.href='{:U('User/noticelist')}'">初始化搜索</button>
- </div>
- </div>
- <div>
- <div class="cf">
- <div class="fl">
- <button class="btn ajax-post confirm btn-danger " url="{:U('User/noticedel',array('type'=>'1'))}" target-form="ids">删 除</button>
- </div>
- <div class="search-form fr cf" style="float: none !important;">
- <div class="sleft">
- <form name="formSearch" id="formSearch" method="get" name="form1">
- <input type="text" name="username" class="search-input form-control " value="{$Think.get.username}" placeholder="请输入查询内容" style="">
- <a class="sch-btn" href="javascript:;" id="search"> <i class="btn-search"></i> </a>
- </form>
- <script>
- //搜索功能
- $(function () {
- $('#search').click(function () {
- $('#formSearch').submit();
- });
- });
- //回车搜索
- $(".search-input").keyup(function (e) {
- if (e.keyCode === 13) {
- $("#search").click();
- return false;
- }
- });
- </script>
- </div>
- </div>
- </div>
- </div>
- <div class="data-table table-striped">
- <table class="">
- <thead>
- <tr>
- <th class="row-selected row-selected"><input class="check-all" type="checkbox"/></th>
- <th class="">ID</th>
- <th class="">会员账号</th>
- <th class="">通知标题</th>
- <th class="">通知内容</th>
- <th class="">发送时间</th>
- <th class="">状态</th>
- </tr>
- </thead>
- <tbody>
- <notempty name="list">
- <volist name="list" id="vo">
- <tr>
- <td><input class="ids" type="checkbox" name="id[]" value="{$vo.id}"/></td>
- <td>{$vo.id}</td>
- <td>{$vo.account}</td>
- <td>{$vo.title}</td>
- <td>{$vo.content}</td>
- <td>{$vo.addtime}</td>
- <td>
- <if condition="$vo.status eq 1">
- <span style="color:red;">未读</span>
- <elseif condition="$vo.status eq 2" />
- <span style="color:green;">已读</span>
- </if>
- </td>
- </tr>
- </volist>
- <else/>
- <td colspan="12" class="text-center empty-info"><i class="glyphicon glyphicon-exclamation-sign"></i>暂无数据</td>
- </notempty>
- </tbody>
- </table>
- <div class="page">
- <div>{$page}</div>
- </div>
- </div>
- </div>
- </div>
- <include file="Public:footer"/>
- <block name="script">
- <script type="text/javascript" charset="utf-8">
- //导航高亮
- highlight_subnav("{:U('User/noticelist')}");
- </script>
- </block>
|