暫無描述

changTongZhiMuBan.html 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <script src="../Script/Common/huayi.load.js"></script>
  6. <script src="../Script/Common/huayi.config.js"></script>
  7. <link rel="stylesheet" href="../css/layer/need/layer.css" />
  8. <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
  9. <link rel="stylesheet" href="../css/init.css" />
  10. <title>编辑通知模板</title>
  11. <style>
  12. table th{
  13. width: 25%;
  14. text-align: right;
  15. }
  16. table th{
  17. width: 25%;
  18. text-align: right;
  19. }
  20. table th,table td{
  21. border-top: 0!important;
  22. }
  23. table td textarea {
  24. border: 1px solid #e5e5e5;
  25. resize: none;
  26. width: 70%;
  27. vertical-align: middle;
  28. outline: none;
  29. }
  30. table td select {
  31. width: 240px;
  32. background-color: #ffffff;
  33. background-image: none !important;
  34. filter: none !important;
  35. border: 1px solid #e5e5e5;
  36. outline: none;
  37. height: 34px !important;
  38. line-height: 30px;
  39. margin-right: 5px;
  40. padding-left: 10px;
  41. }
  42. table td input[type=text] {
  43. border: 1px solid #e5e5e5;
  44. width: 240px;
  45. outline: 0;
  46. margin-right: 5px;
  47. padding-left: 10px;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div class="container-fluid">
  53. <table class="table">
  54. <tr>
  55. <th><b>所属类别:</b></th>
  56. <td><select name="" id="" class="select_">
  57. <option value="1">类别1</option>
  58. <option value="2">类别2</option>
  59. <option value="3">类别3</option>
  60. </select></td>
  61. </tr>
  62. <tr>
  63. <th><b>标题:</b></th>
  64. <td><input type="text" class="input_" /></td>
  65. </tr>
  66. <tr>
  67. <th><b>内容:</b></th>
  68. <td><textarea data-adaptheight name="" rows="" cols=""></textarea></td>
  69. </tr>
  70. <tr>
  71. <td colspan="2" style="text-align: center;">
  72. <button class="btns">确定</button>
  73. </td>
  74. </tr>
  75. </table>
  76. </div>
  77. <script src="../css/layer/layer.js"></script>
  78. <script src="../js/zTree/jquery.ztree.core.js"></script>
  79. <script src="../js/kindeditor/kindeditor-all-min.js"></script>
  80. <script src="../js/kindeditor/lang/zh-CN.js"></script>
  81. <script src="../js/adjustHeight.js"></script>
  82. <script>
  83. var token = $.cookie("token");
  84. </script>
  85. </body>
  86. </html>