tujidelv %!s(int64=3) %!d(string=hai) anos
pai
achega
32a47420cc

+ 13 - 0
src/main/resources/static/bg.html

@@ -181,6 +181,19 @@
             <input type="submit" value="提交">
         </form>
     </div>
+    <br/>
+    <div style="margin-right:20px;">
+        <span class="font">delVideoInfo</span>
+        <form method="post" action="bg/delVideoInfo">
+            <span>identificationCode</span>
+            <input type="text" name="identificationCode" placeholder="识别码,不可为空"/>
+            <span>parentTypeName</span>
+            <input type="text" name="parentTypeName" placeholder="上级类型名称,与allFlag不可同时为空"/>
+            <span>allFlag</span>
+            <input type="text" name="allFlag" placeholder="所有{1:是2:否},与parentTypeName不可同时为空"/>
+            <input type="submit" value="提交">
+        </form>
+    </div>
 </div>
 </body>
 </html>

+ 1 - 1
src/main/resources/static/js/my-video.js

@@ -310,7 +310,7 @@ function initContentEvent() {
     //         $("#playvideo").find("video").attr("src", "");
     //     }
     // });
-    $(".playvideo").dblclick(function () {
+    $(".playvideo").click(function () {
         var type = $("#bigType").attr("prepath");
         var code = $(this).attr("identificationCode");
         window.open("voddetail.html?type=" + type + "&code=" + code, "_blank");

+ 2 - 2
src/main/resources/static/js/my-voddetail.js

@@ -154,12 +154,12 @@ function initDetail() {
                 if (data.genres == undefined || data.genres === '') {
                     $("#genres").text('--');
                 } else {
-                    $("#genres").text(data.genres.replaceAll(",", " "));
+                    $("#genres").text(data.genres.replaceAll(",", " | "));
                 }
                 if (data.cast == undefined || data.cast === '') {
                     $("#cast").text('--');
                 } else {
-                    $("#cast").text(data.cast.replaceAll(",", "  "));
+                    $("#cast").text(data.cast.replaceAll(",", " | "));
                 }
 
                 $("#commentfirstspan").text(data.commentFirst);