signup.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="../js/lib/jquery-1.9.1/jquery.min.js"></script>
  6. <script src="../js/lib/vue.js"></script>
  7. <script src="../js/config/base_config.js"></script>
  8. <script src="../js/lib/ajaxRedirect.js"></script>
  9. <link href="../ztree/css/zTreeStyle/zTreeStyle.css" rel="stylesheet" />
  10. <script src="../ztree/js/jquery.ztree.all.js"></script>
  11. <script src="../jqueryUI/jquery-ui.js"></script>
  12. <script src="../js/pagination.js"></script>
  13. <link href="../jqueryUI/jquery-ui.css" rel="stylesheet" />
  14. <link href="../css/css01.css" rel="stylesheet" type="text/css">
  15. <title>Title</title>
  16. </head>
  17. <body>
  18. <div>
  19. <!--内容-->
  20. <div class="content">
  21. <!--筛选-->
  22. <ul class="recommendation-screen">
  23. <li>
  24. <input type="text" id="selectName" class="recom_inpu" placeholder="请输入项目名称"/>
  25. <button onclick="signupVM.pageNumber = 1;signupVM.getDataList()">搜索</button>
  26. </li>
  27. </ul>
  28. <!--table表格-->
  29. <div class="table">
  30. <table>
  31. <thead>
  32. <tr>
  33. <!--<th>id</th>-->
  34. <th width="25%">项目名称</th>
  35. <th width="25%">提交时间</th>
  36. <th width="25%">提交地点</th>
  37. <th width="25%">操作</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. <tr v-for="item in dataList" style="height: 80px">
  42. <td>{{item.projectname}}</td>
  43. <td>{{item.newtime}}</td>
  44. <td>{{item.address}}</td>
  45. <td>
  46. <button class="btn-modify" onclick="toDetail('{{item.id}}')">查看详情</button>
  47. <button class="btn-delete" onclick="toDownloadFile('{{item.id}}')">下载附件</button>
  48. </td>
  49. </tr>
  50. </tbody>
  51. </table>
  52. </div>
  53. <!--分页-->
  54. <div class="page" id="page">
  55. </div>
  56. </div>
  57. </div>
  58. </body>
  59. <script src="/iflytek/js/signup.js"></script>
  60. <script type="text/javascript">
  61. $(window.parent.document).find("#content_iframe").height(document.body.clientHeight + 100);
  62. window.onresize = function(){
  63. var main = $(window.parent.document).find("#content_iframe");
  64. var thisheight = document.body.clientHeight + 100;
  65. main.height(thisheight);
  66. }
  67. </script>
  68. </html>