| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!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 rel="stylesheet" href="../css/layer/need/layer.css" />
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>编辑通知模板</title>
- <style>
- table th{
- width: 25%;
- text-align: right;
- }
- table th{
- width: 25%;
- text-align: right;
- }
- table th,table td{
- border-top: 0!important;
- }
- table td textarea {
- border: 1px solid #e5e5e5;
- resize: none;
- width: 70%;
- vertical-align: middle;
- outline: none;
- }
- table td select {
- width: 240px;
- background-color: #ffffff;
- background-image: none !important;
- filter: none !important;
- border: 1px solid #e5e5e5;
- outline: none;
- height: 34px !important;
- line-height: 30px;
- margin-right: 5px;
- padding-left: 10px;
- }
- table td input[type=text] {
- border: 1px solid #e5e5e5;
- width: 240px;
- outline: 0;
- margin-right: 5px;
- padding-left: 10px;
- }
- </style>
- </head>
- <body>
- <div class="container-fluid">
- <table class="table">
- <tr>
- <th><b>所属类别:</b></th>
- <td><select name="" id="" class="select_">
- <option value="1">类别1</option>
- <option value="2">类别2</option>
- <option value="3">类别3</option>
- </select></td>
- </tr>
- <tr>
- <th><b>标题:</b></th>
- <td><input type="text" class="input_" /></td>
- </tr>
- <tr>
- <th><b>内容:</b></th>
- <td><textarea data-adaptheight name="" rows="" cols=""></textarea></td>
- </tr>
- <tr>
- <td colspan="2" style="text-align: center;">
- <button class="btns">确定</button>
- </td>
- </tr>
- </table>
- </div>
- <script src="../css/layer/layer.js"></script>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="../js/kindeditor/kindeditor-all-min.js"></script>
- <script src="../js/kindeditor/lang/zh-CN.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script>
- var token = $.cookie("token");
-
-
- </script>
- </body>
- </html>
|