123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <!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/config/base_config.js"></script>
- <script src="../js/lib/ajaxRedirect.js"></script>
- <script src="../js/lib/pageList.js"></script>
- <script src="../jqueryUI/jquery-ui.js"></script>
- <link href="../jqueryUI/jquery-ui.css" rel="stylesheet" />
- <link href="../css/css01.css" rel="stylesheet" type="text/css">
- <script src="js/contact_us.js"></script>
- <title>联系我们</title>
- </head>
- <body>
- <div>
- <!--内容-->
- <div class="content">
- <!--筛选-->
- <ul class="recommendation-screen">
- <li>
- <input class="input01" type="text" id="title" name="title" placeholder="请输入标题"/>
- </li>
- <li>
- <div class="button01">
- <button onclick="loadPage();">查询</button>
- <button onclick="toAdd();">新建</button>
- </div>
- </li>
- </ul>
- <!--table表格-->
- <div class="table">
- <table>
- <thead>
- <tr>
- <th>名称</th>
- <th>地址</th>
- <th>电话</th>
- <th>上次修改时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody id="versionDiv">
- </tbody>
- </table>
- </div>
- <!--分页-->
- <div id="page" class="page">
- </div>
- </div>
- </div>
- <div id="iAdd" style="display: none;">
- <div style="padding-bottom:0;" class="recommendation-screen">
- <form id="iAddForm">
- <input type="hidden" name="id" id="id">
- <table border="0" width="100%">
- <tr>
- <td width="20%"><span >名称:</span></td>
- <td width="80%">
- <input type="text" id="iAddName" style="border-radius: 5px;margin-bottom: 20px;margin-right: 10px;border: solid 1px #ccc;width: 148px;
- height: 32px; padding-left: 30px; line-height: 32px;" name="cityname">
- </td>
- </tr>
- <tr>
- <td width="20%"><span >地址:</span></td>
- <td width="80%">
- <input type="text" id="iAddAddress" style="border-radius: 5px;margin-bottom: 20px;margin-right: 10px;border: solid 1px #ccc;width: 148px;
- height: 32px; padding-left: 30px; line-height: 32px;" name="address">
- </td>
- </tr>
- <tr>
- <td width="20%"><span >电话:</span></td>
- <td width="80%">
- <input type="text" id="iAddTel" style="border-radius: 5px;margin-bottom: 20px;margin-right: 10px;border: solid 1px #ccc;width: 148px;
- height: 32px; padding-left: 30px; line-height: 32px;" name="tel">
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- </body>
- </html>
|