1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!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="<?= WEB_SITE_GLOBAL ?>/img/admin/style.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/jquery-1.7.1.min.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/over.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/admin.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/admin/calendar.js"></script>
- <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>/js/easydialog.min.js"></script>
- <script type="text/javascript">
- function sumbit_sure(){
- var gnl=confirm("你确定清空当页待审批内容吗?");
- if (gnl==true){
- return true;
- }else{
- return false;
- }
- }
- </script>
-
- </head>
- <body>
- <div class="main_content">
-
- <form name="userForm" action="/index/examine_clear" method="post" onsubmit="return sumbit_sure()">
- <div class="question_list">
-
- <table cellspacing="0" cellpadding="0" class="tableList">
- <tbody><tr class="odd">
-
- <th>标题</th>
- <th>提问者</th>
- <th>提交时间</th>
- <th>操作</th>
- </tr>
-
- <!-- loop examine_list -->
- <tr class="">
-
- <td>{{examine' value.title}}</td>
- <td>{{examine' value.author}}</td>
- <td>{{examine' value.time}}</td>
- <td><a class="button btn-green btn-icon" href="javascript:if(confirm('确实通过?'))location='/examine_add/{{examine' value.idKey}}'"><i class="icon iconConfirm"></i>通过</a></td>
- </tr>
- <!-- endloop -->
-
-
- </tbody>
- </table>
-
- </div>
- <input type="submit" class="button btn-gray " name="submit" value="清空当页待审批"/>
-
- </form>
-
- </div>
- </body>
- </html>
|