| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../css/layer/need/layer.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>诉求回访</title>
- </head>
- <body>
- <div class="Common">
- <table >
- <tr>
- <th class="Importent">办理时限:</th>
- <td>
- <input type="text" id="startTime" class="laydate-icon" style="height: 32px;">
- </td>
- </tr>
- <tr>
- <th class="Importent">承办单位:</th>
- <td colspan="2"><textarea data-adaptheight name="" rows="" cols=""></textarea></td>
- </tr>
- <tr>
- <th >交办意见:</th>
- <td colspan="2"><textarea data-adaptheight name="" rows="" cols=""></textarea></td>
- </tr>
-
- </table>
- <div class="btn_box">
- <button class="btns">保存</button>
- <button class="btns">保存并交办</button>
- </div>
- </div>
- <script src="../css/laydate/laydate.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script >
- laydate.skin('blue');
- laydate({
- elem: '#startTime',
- event: 'focus'
- });
- </script>
- </body>
- </html>
|