123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="<?php echo WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/easydialog.min.js"></script>
- </head>
- <body>
- <div class="main_content new_product">
- <div class="crumbbar">快速导航 » <?php echo $data['map']; ?></div>
- <div class="main_toolbar clearfix">
-
- <div id="append"></div>
- <form action="/index/main_article_manage" method="get">
- <table width="100%" cellspacing="1" cellpadding="4" align="center" class="tableborder">
- <tbody>
- <!-- <tr class="header"><td colspan="7">用户列表 <input type="button" style="cursor:pointer" onclick="document.location.href=''" value="添加用户"/></td></tr> -->
- <tr class="altbg1"><td colspan="7">可以通过如下搜索条件</td></tr>
- <tr>
- <td width="40%">标题:<input class="txt" name="title" value="<?php echo $data['title']; ?>"/></td>
- <td ><input class="btn" type="submit" value="提 交"/></td>
- </tr>
- <tr>
- <td width="40%">时间:<input class="txt" onclick="showcalendar();" name="srchregdatestart"/> 到 <input class="txt" onclick="showcalendar();" name="srchregdateend"/></td>
- <td></td>
- </tr>
- </tbody>
- </table>
- </form>
- <div><a href="/index/main_article_add_manage">添加公告</a></div>
- <div class="globle_list">
- <form name="userForm" action="/index/main_article_delete_manage" method="post">
-
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody><tr>
- <th><input class="checkbox" type="checkbox" onclick="checkall('id[]')" id="chkall" name="chkall" />全选</th>
- <th>标题</th>
- <th>时间</th>
- <th>操作</th>
- </tr>
- <?php foreach($data['question']['question_list'] as $k1=>$v1): ?>
- <tr>
- <td><input class="checkbox" type="checkbox" value="<?php echo $v1['aid']; ?>" name="id[]" /></td>
- <td><?php echo $v1['title']; ?></td>
- <td><?php echo $v1['time']; ?></td>
- <td><a href="/index/main_article_edit_manage/<?php echo $v1['aid']; ?>">编辑</a></td>
- </tr>
- <?php endforeach; ?>
- </tbody></table>
- </form>
- </div>
-
- <a class="button btn-red btn-icon" href="javascript:remove_article();"><i class="icon iconDelete"></i>删除</a>
- <div class="pageNav2 clearfix" style="float:right">
- <div class="pageList">
- <a href="/index/main_question_manage/<?php echo $data['question']['previous']; ?>?status=<?php echo $data['status']; ?>&authorid=<?php echo $data['authorid']; ?>&title=<?php echo $data['title']; ?>&srchregdatestart=<?php echo $data['srchregdatestart']; ?>&srchregdateend=<?php echo $data['srchregdateend']; ?>" class="inactivePrev" <?php if( $data['question']['previous']==1 ): ?>disabled = 'true'<?php endif; ?> >上一页</a>
- <?php echo $data['question']['page']; ?>
- <a href="/index/main_question_manage/<?php echo $data['question']['total_page']; ?>?status=<?php echo $data['status']; ?>&authorid=<?php echo $data['authorid']; ?>&title=<?php echo $data['title']; ?>&srchregdatestart=<?php echo $data['srchregdatestart']; ?>&srchregdateend=<?php echo $data['srchregdateend']; ?>"
- class="paginate">... <?php echo $data['question']['total_page']; ?></a>
- <a href="/index/main_question_manage/<?php echo $data['question']['next']; ?>?status=<?php echo $data['status']; ?>&authorid=<?php echo $data['authorid']; ?>&title=<?php echo $data['title']; ?>&srchregdatestart=<?php echo $data['srchregdatestart']; ?>&srchregdateend=<?php echo $data['srchregdateend']; ?>" class="next">下一页</a></div>
- </div>
-
- </div>
-
-
- </div>
- </body>
- </html>
|