resetTime.jsp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/WEB-INF/views/include/taglib.jsp" %>
  3. <html>
  4. <head>
  5. <title>添加视频资料</title>
  6. <meta name="decorator" content="default"/>
  7. <style>
  8. .controls .new-tag {
  9. display: inline-block;
  10. width: 78px;
  11. height: 30px;
  12. border: 1px solid #e5e5e5;
  13. border-radius: 5px;
  14. margin: 7px;
  15. text-align: center;
  16. line-height: 30px;
  17. font-size: 14px;
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. white-space: nowrap;
  21. cursor: pointer;
  22. }
  23. .controls .new-tag.active {
  24. border-color: #e15616;
  25. color: #e15616;
  26. }
  27. #tagInput {
  28. width: 263px;
  29. margin: 7px;
  30. display: inline-block;
  31. height: 30px;
  32. }
  33. .controls .tags-operate .tag-add {
  34. height: 40px;
  35. line-height: 40px;
  36. vertical-align: middle;
  37. }
  38. .upload {
  39. position: relative;
  40. display: inline-block;
  41. background: #D0EEFF;
  42. border: 1px solid #99D3F5;
  43. border-radius: 4px;
  44. padding: 4px 12px;
  45. color: #1E88C7;
  46. text-decoration: none;
  47. text-indent: 0;
  48. line-height: 20px;
  49. margin-left: 20px;
  50. cursor: pointer;
  51. width: 52px;
  52. height: 20px;
  53. }
  54. .upload input {
  55. position: absolute;
  56. width: 170px;
  57. font-size: 20px;
  58. right: 0;
  59. top: 0;
  60. opacity: 0;
  61. cursor: pointer;
  62. }
  63. .upload:hover {
  64. background: #AADFFD;
  65. border-color: #78C3F3;
  66. color: #004974;
  67. text-decoration: none;
  68. }
  69. .add-submit {
  70. position: relative;
  71. display: inline;
  72. background: #D0EEFF;
  73. border: 1px solid #99D3F5;
  74. border-radius: 4px;
  75. padding: 4px 12px;
  76. color: #1E88C7;
  77. text-decoration: none;
  78. text-indent: 0;
  79. line-height: 20px;
  80. margin-left: 20px;
  81. cursor: pointer;
  82. width: 52px;
  83. height: 30px;
  84. }
  85. .add-submit input {
  86. position: absolute;
  87. width: 50px;
  88. font-size: 20px;
  89. right: 0;
  90. top: 0;
  91. opacity: 0;
  92. cursor: pointer;
  93. }
  94. .add-submit:hover {
  95. background: #AADFFD;
  96. border-color: #78C3F3;
  97. color: #004974;
  98. text-decoration: none;
  99. }
  100. .upload-loading{
  101. display: none;
  102. width: 32px;
  103. height: 32px;
  104. margin-left: 10px;
  105. }
  106. .upload-loading img{
  107. width: 16px;
  108. height: 16px;
  109. margin: 0 auto 0;
  110. }
  111. #file-list-display {
  112. width: 600px;
  113. height: auto;
  114. float: left;
  115. margin-left: 20px;
  116. }
  117. #file-list-display p {
  118. line-height: 30px;
  119. font-size: 14px;
  120. color: #333333;
  121. margin: 0;
  122. }
  123. #file-list-display p .del {
  124. color: #2fa4e7;
  125. font-size: 12px;
  126. cursor: pointer;
  127. margin-left: 20px;
  128. }
  129. .Main-content{
  130. height: 100px;
  131. }
  132. .control-group{
  133. margin-top: 40px;
  134. }
  135. </style>
  136. </head>
  137. <body>
  138. <form:form id="inputForm" modelAttribute="info" action="${ctx}/info/info/audit" method="post" class="form-horizontal">
  139. <sys:message content="${message}"/>
  140. <div class="control-group">
  141. <label class="control-label"><font color="red">*</font>上架时间</label>
  142. <div class="controls">
  143. <input id="startTime" name="startTime" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate required"
  144. onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm',isShowClear:false});"/>
  145. </div>
  146. </div>
  147. <div class="control-group">
  148. <label class="control-label"><font color="red">*</font>下架时间</label>
  149. <div class="controls">
  150. <input id="endTime" name="endTime" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate required"
  151. onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm',isShowClear:false});"/>
  152. </div>
  153. </div>
  154. </form:form>
  155. <script>
  156. function getCheckedItems() {
  157. var items = new Array();
  158. items.push({
  159. startTime: $("#startTime").val(),
  160. endTime: $("#endTime").val()
  161. });
  162. return items;
  163. }
  164. </script>
  165. </body>
  166. </html>