12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <script src="../js/lib/jquery-1.9.1/jquery.min.js"></script>
- <script src="../js/lib/vue.js"></script>
- <script src="../js/config/base_config.js"></script>
- <script src="../js/lib/ajaxRedirect.js"></script>
- <link href="../ztree/css/zTreeStyle/zTreeStyle.css" rel="stylesheet" />
- <script src="../ztree/js/jquery.ztree.all.js"></script>
- <script src="../jqueryUI/jquery-ui.js"></script>
- <script src="../js/pagination.js"></script>
- <link href="../jqueryUI/jquery-ui.css" rel="stylesheet" />
- <link href="../css/css01.css" rel="stylesheet" type="text/css">
- <title>Title</title>
- </head>
- <body>
- <div>
- <!--内容-->
- <div class="content">
- <!--筛选-->
- <ul class="recommendation-screen">
- <li>
- <input type="text" id="selectName" class="recom_inpu" placeholder="请输入项目名称"/>
- <button onclick="signupVM.pageNumber = 1;signupVM.getDataList()">搜索</button>
- </li>
- </ul>
- <!--table表格-->
- <div class="table">
- <table>
- <thead>
- <tr>
- <!--<th>id</th>-->
- <th width="25%">项目名称</th>
- <th width="25%">提交时间</th>
- <th width="25%">提交地点</th>
- <th width="25%">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="item in dataList" style="height: 80px">
- <td>{{item.projectname}}</td>
- <td>{{item.newtime}}</td>
- <td>{{item.address}}</td>
- <td>
- <button class="btn-modify" onclick="toDetail('{{item.id}}')">查看详情</button>
- <button class="btn-delete" onclick="toDownloadFile('{{item.id}}')">下载附件</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <!--分页-->
- <div class="page" id="page">
- </div>
- </div>
- </div>
- </body>
- <script src="/iflytek/js/signup.js"></script>
- <script type="text/javascript">
- $(window.parent.document).find("#content_iframe").height(document.body.clientHeight + 100);
- window.onresize = function(){
- var main = $(window.parent.document).find("#content_iframe");
- var thisheight = document.body.clientHeight + 100;
- main.height(thisheight);
- }
- </script>
- </html>
|