|
@@ -116,6 +116,17 @@ function search(pageNo, startFlag, searchSelectFlag) {
|
|
|
date = videoInfo.modifyTime;
|
|
date = videoInfo.modifyTime;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ var scoreStr = '';
|
|
|
|
|
+ if (bigType == '骑兵') {
|
|
|
|
|
+ scoreStr += videoInfo.resolutionRatio + '|';
|
|
|
|
|
+ scoreStr += (videoInfo.original === null ? '?' : (videoInfo.original == 1 ? '原档' : '非原档')) + '|';
|
|
|
|
|
+ scoreStr += (videoInfo.subtitle === null ? '?' : (videoInfo.subtitle == 1 ? '字幕' : '无字幕')) + '|';
|
|
|
|
|
+ scoreStr += (videoInfo.recoding === null ? '?' : (videoInfo.recoding == 1 ? '压缩' : '未压缩')) + '|';
|
|
|
|
|
+ scoreStr += videoInfo.score;
|
|
|
|
|
+ } else {
|
|
|
|
|
+ scoreStr = videoInfo.score;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
str += "<li class=\"col-lg-8 col-md-6 col-sm-4 col-xs-3\">" +
|
|
str += "<li class=\"col-lg-8 col-md-6 col-sm-4 col-xs-3\">" +
|
|
|
" <div class=\"myui-vodlist__box\">" +
|
|
" <div class=\"myui-vodlist__box\">" +
|
|
|
" <a class=\"myui-vodlist__thumb lazyload\" title=\"\" style=\"background-image: url("apics/" + videoInfo.imgUrl + "");\">" +
|
|
" <a class=\"myui-vodlist__thumb lazyload\" title=\"\" style=\"background-image: url("apics/" + videoInfo.imgUrl + "");\">" +
|
|
@@ -124,7 +135,7 @@ function search(pageNo, startFlag, searchSelectFlag) {
|
|
|
" <span class=\"tag identificationCode\" style=\"background-color: #FB7299;\">" + videoInfo.identificationCode + "</span>" +
|
|
" <span class=\"tag identificationCode\" style=\"background-color: #FB7299;\">" + videoInfo.identificationCode + "</span>" +
|
|
|
" <span class=\"tag\" style=\"background-color: #00C0FF;\">" + date + "</span>" +
|
|
" <span class=\"tag\" style=\"background-color: #00C0FF;\">" + date + "</span>" +
|
|
|
" </span>" +
|
|
" </span>" +
|
|
|
- " <span class=\"pic-text text-right\" title='" + videoInfo.comment + "'>" + videoInfo.score + "</span>" +
|
|
|
|
|
|
|
+ " <span class=\"pic-text text-right\" title='" + (videoInfo.comment === '' ? '暂无评论' : videoInfo.comment) + "'>" + scoreStr + "</span>" +
|
|
|
" </a>" +
|
|
" </a>" +
|
|
|
" <div class=\"myui-vodlist__detail\">" +
|
|
" <div class=\"myui-vodlist__detail\">" +
|
|
|
" <h4 class=\"videodetail title text-overflow\" identificationCode='" + videoInfo.identificationCode + "' ><a title=\" " + videoInfo.name + " \">" + videoInfo.name + "</a></h4>" +
|
|
" <h4 class=\"videodetail title text-overflow\" identificationCode='" + videoInfo.identificationCode + "' ><a title=\" " + videoInfo.name + " \">" + videoInfo.name + "</a></h4>" +
|