| | |
| | | case "动漫": |
| | | videoType = VideoConstant.VIDEO_CATEGORY_DONGMAN; |
| | | break; |
| | | case "少儿": |
| | | videoType = 312; |
| | | break; |
| | | default: |
| | | return null; |
| | | } |
| | |
| | | } else { |
| | | tag = series.getPublishTime().split(" ")[0]; |
| | | } |
| | | } else { |
| | | if ("1".equalsIgnoreCase(series.getSeriesCount())) { |
| | | tag = "评分:" + score; |
| | | } else { |
| | | if (series.getCurrentNum() != null && series.getSeriesCount().trim().equalsIgnoreCase(series.getCurrentNum().trim())) { |
| | | tag = series.getSeriesCount() + "集全"; |
| | | } else { |
| | | if (series.getCurrentNum() != null) |
| | | tag = "更新至" + series.getCurrentNum() + "集"; |
| | | else { |
| | | tag = "更新至" + series.getSeriesCount() + "集"; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | |