contact_us.html 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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/config/base_config.js"></script>
  9. <script src="../js/lib/ajaxRedirect.js"></script>
  10. <script src="../js/lib/pageList.js"></script>
  11. <script src="../jqueryUI/jquery-ui.js"></script>
  12. <link href="../jqueryUI/jquery-ui.css" rel="stylesheet" />
  13. <link href="../css/css01.css" rel="stylesheet" type="text/css">
  14. <script src="js/contact_us.js"></script>
  15. <title>联系我们</title>
  16. </head>
  17. <body>
  18. <div>
  19. <!--内容-->
  20. <div class="content">
  21. <!--筛选-->
  22. <ul class="recommendation-screen">
  23. <li>
  24. <input class="input01" type="text" id="title" name="title" placeholder="请输入标题"/>
  25. </li>
  26. <li>
  27. <div class="button01">
  28. <button onclick="loadPage();">查询</button>
  29. <button onclick="toAdd();">新建</button>
  30. </div>
  31. </li>
  32. </ul>
  33. <!--table表格-->
  34. <div class="table">
  35. <table>
  36. <thead>
  37. <tr>
  38. <th>名称</th>
  39. <th>地址</th>
  40. <th>电话</th>
  41. <th>上次修改时间</th>
  42. <th>操作</th>
  43. </tr>
  44. </thead>
  45. <tbody id="versionDiv">
  46. </tbody>
  47. </table>
  48. </div>
  49. <!--分页-->
  50. <div id="page" class="page">
  51. </div>
  52. </div>
  53. </div>
  54. <div id="iAdd" style="display: none;">
  55. <div style="padding-bottom:0;" class="recommendation-screen">
  56. <form id="iAddForm">
  57. <input type="hidden" name="id" id="id">
  58. <table border="0" width="100%">
  59. <tr>
  60. <td width="20%"><span >名称:</span></td>
  61. <td width="80%">
  62. <input type="text" id="iAddName" style="border-radius: 5px;margin-bottom: 20px;margin-right: 10px;border: solid 1px #ccc;width: 148px;
  63. height: 32px; padding-left: 30px; line-height: 32px;" name="cityname">
  64. </td>
  65. </tr>
  66. <tr>
  67. <td width="20%"><span >地址:</span></td>
  68. <td width="80%">
  69. <input type="text" id="iAddAddress" style="border-radius: 5px;margin-bottom: 20px;margin-right: 10px;border: solid 1px #ccc;width: 148px;
  70. height: 32px; padding-left: 30px; line-height: 32px;" name="address">
  71. </td>
  72. </tr>
  73. <tr>
  74. <td width="20%"><span >电话:</span></td>
  75. <td width="80%">
  76. <input type="text" id="iAddTel" style="border-radius: 5px;margin-bottom: 20px;margin-right: 10px;border: solid 1px #ccc;width: 148px;
  77. height: 32px; padding-left: 30px; line-height: 32px;" name="tel">
  78. </td>
  79. </tr>
  80. </table>
  81. </form>
  82. </div>
  83. </div>
  84. </body>
  85. </html>