123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp" %>
- <html>
- <head>
- <title>添加视频资料</title>
- <meta name="decorator" content="default"/>
- <style>
- .controls .new-tag {
- display: inline-block;
- width: 78px;
- height: 30px;
- border: 1px solid #e5e5e5;
- border-radius: 5px;
- margin: 7px;
- text-align: center;
- line-height: 30px;
- font-size: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- cursor: pointer;
- }
- .controls .new-tag.active {
- border-color: #e15616;
- color: #e15616;
- }
- #tagInput {
- width: 263px;
- margin: 7px;
- display: inline-block;
- height: 30px;
- }
- .controls .tags-operate .tag-add {
- height: 40px;
- line-height: 40px;
- vertical-align: middle;
- }
- .upload {
- position: relative;
- display: inline-block;
- background: #D0EEFF;
- border: 1px solid #99D3F5;
- border-radius: 4px;
- padding: 4px 12px;
- color: #1E88C7;
- text-decoration: none;
- text-indent: 0;
- line-height: 20px;
- margin-left: 20px;
- cursor: pointer;
- width: 52px;
- height: 20px;
- }
- .upload input {
- position: absolute;
- width: 170px;
- font-size: 20px;
- right: 0;
- top: 0;
- opacity: 0;
- cursor: pointer;
- }
- .upload:hover {
- background: #AADFFD;
- border-color: #78C3F3;
- color: #004974;
- text-decoration: none;
- }
- .add-submit {
- position: relative;
- display: inline;
- background: #D0EEFF;
- border: 1px solid #99D3F5;
- border-radius: 4px;
- padding: 4px 12px;
- color: #1E88C7;
- text-decoration: none;
- text-indent: 0;
- line-height: 20px;
- margin-left: 20px;
- cursor: pointer;
- width: 52px;
- height: 30px;
- }
- .add-submit input {
- position: absolute;
- width: 50px;
- font-size: 20px;
- right: 0;
- top: 0;
- opacity: 0;
- cursor: pointer;
- }
- .add-submit:hover {
- background: #AADFFD;
- border-color: #78C3F3;
- color: #004974;
- text-decoration: none;
- }
- .upload-loading{
- display: none;
- width: 32px;
- height: 32px;
- margin-left: 10px;
- }
- .upload-loading img{
- width: 16px;
- height: 16px;
- margin: 0 auto 0;
- }
- #file-list-display {
- width: 600px;
- height: auto;
- float: left;
- margin-left: 20px;
- }
- #file-list-display p {
- line-height: 30px;
- font-size: 14px;
- color: #333333;
- margin: 0;
- }
- #file-list-display p .del {
- color: #2fa4e7;
- font-size: 12px;
- cursor: pointer;
- margin-left: 20px;
- }
- .Main-content{
- height: 100px;
- }
- .control-group{
- margin-top: 40px;
- }
- </style>
- </head>
- <body>
- <form:form id="inputForm" modelAttribute="info" action="${ctx}/info/info/audit" method="post" class="form-horizontal">
- <sys:message content="${message}"/>
- <div class="control-group">
- <label class="control-label"><font color="red">*</font>上架时间</label>
- <div class="controls">
- <input id="startTime" name="startTime" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate required"
- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm',isShowClear:false});"/>
- </div>
- </div>
- <div class="control-group">
- <label class="control-label"><font color="red">*</font>下架时间</label>
- <div class="controls">
- <input id="endTime" name="endTime" type="text" readonly="readonly" maxlength="20" class="input-medium Wdate required"
- onclick="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm',isShowClear:false});"/>
- </div>
- </div>
- </form:form>
- <script>
- function getCheckedItems() {
- var items = new Array();
- items.push({
- startTime: $("#startTime").val(),
- endTime: $("#endTime").val()
- });
- return items;
- }
- </script>
- </body>
- </html>
|