From 309c4ed09803faddd9ec8d610fcd06dacaa53613 Mon Sep 17 00:00:00 2001 From: make Date: Sat, 10 May 2025 15:08:28 +0800 Subject: [PATCH] add video template 4 --- .../view/videoBoKu/video/getVideoInfo.html | 2 +- .../view/videoBoKu/video/getVideoPlayUrl.html | 1 + .../view/videoDadi/video/getVideoInfo.html | 2 +- .../view/videoDadi/video/getVideoPlayUrl.html | 1 + .../view/videoDingZhu/video/getVideoInfo.html | 2 +- .../videoDingZhu/video/getVideoPlayUrl.html | 1 + code/app/home/view/videoLaoNiu/base.html | 221 +- .../home/view/videoLaoNiu/index/index.html | 102 +- .../home/view/videoLaoNiu/public/footer.html | 87 +- .../videoLaoNiu/public/video-list-phb.html | 20 +- .../videoLaoNiu/public/video-list-shu-pf.html | 24 + .../videoLaoNiu/public/video-list-shu.html | 47 +- .../view/videoLaoNiu/public/video-panel.html | 95 +- .../view/videoLaoNiu/user/getHistory.html | 111 +- .../view/videoLaoNiu/video/getCategory.html | 332 +- .../videoLaoNiu/video/getCategoryType.html | 187 +- .../view/videoLaoNiu/video/getRankIndex.html | 189 +- .../view/videoLaoNiu/video/getRankList.html | 198 +- .../videoLaoNiu/video/getSearchVideo.html | 195 +- .../view/videoLaoNiu/video/getVideoInfo.html | 373 +- .../videoLaoNiu/video/getVideoPlayUrl.html | 355 +- code/app/model/ConverterMovel.php | 4 +- code/public/initdata/video/getRankList/h1.php | 102 +- .../video/getVideolPlay/description.php | 100 +- code/public/public/video/common.js | 4 +- .../template/videolaoniu/css/global.css | 2280 ++++++++ .../public/template/videolaoniu/css/style.css | 5138 +++++++++++++++++ .../videolaoniu/css/swiper-bundle.min.css | 13 + .../fonts/font_1611402_1uikunxly7p.ttf | Bin 0 -> 15368 bytes .../fonts/font_1611402_1uikunxly7p.woff | Bin 0 -> 10484 bytes .../fonts/font_1611402_1uikunxly7p.woff2 | Bin 0 -> 9016 bytes .../template/videolaoniu/images/favicon.png | Bin 0 -> 396 bytes .../template/videolaoniu/images/icon/bd.png | Bin 0 -> 1634 bytes .../template/videolaoniu/images/icon/dh.png | Bin 0 -> 1189 bytes .../videolaoniu/images/icon/dian-shi-ju.png | Bin 0 -> 2136 bytes .../videolaoniu/images/icon/dian-ying.png | Bin 0 -> 1282 bytes .../videolaoniu/images/icon/dong-man.png | Bin 0 -> 2337 bytes .../images/icon/duan-ju-da-quan.png | Bin 0 -> 1442 bytes .../template/videolaoniu/images/icon/home.png | Bin 0 -> 917 bytes .../videolaoniu/images/icon/zong-yi.png | Bin 0 -> 1342 bytes .../template/videolaoniu/images/icons.png | Bin 0 -> 6727 bytes .../template/videolaoniu/images/palyer.png | Bin 0 -> 20968 bytes .../template/videolaoniu/images/pic.png | Bin 0 -> 6591 bytes .../template/videolaoniu/images/play.png | Bin 0 -> 2457 bytes .../template/videolaoniu/js/ewave-common.js | 252 + .../template/videolaoniu/js/ewave-global.js | 313 + .../videolaoniu/js/jquery.lazyload.min.js | 2 + .../template/videolaoniu/js/jquery.min.js | 2 + .../template/videolaoniu/js/jquery.raty.js | 763 +++ .../videolaoniu/js/swiper-bundle.min.js | 13 + .../template/videolaoniu/static/js/home.js | 936 +++ .../template/videolaoniu/static/js/player.js | 117 + .../videolaoniu/static/js/playerconfig.js | 7 + .../videolaoniu/static/player/parse.js | 2 + 54 files changed, 11207 insertions(+), 1386 deletions(-) create mode 100644 code/app/home/view/videoLaoNiu/public/video-list-shu-pf.html create mode 100644 code/public/template/videolaoniu/css/global.css create mode 100644 code/public/template/videolaoniu/css/style.css create mode 100644 code/public/template/videolaoniu/css/swiper-bundle.min.css create mode 100644 code/public/template/videolaoniu/fonts/font_1611402_1uikunxly7p.ttf create mode 100644 code/public/template/videolaoniu/fonts/font_1611402_1uikunxly7p.woff create mode 100644 code/public/template/videolaoniu/fonts/font_1611402_1uikunxly7p.woff2 create mode 100644 code/public/template/videolaoniu/images/favicon.png create mode 100644 code/public/template/videolaoniu/images/icon/bd.png create mode 100644 code/public/template/videolaoniu/images/icon/dh.png create mode 100644 code/public/template/videolaoniu/images/icon/dian-shi-ju.png create mode 100644 code/public/template/videolaoniu/images/icon/dian-ying.png create mode 100644 code/public/template/videolaoniu/images/icon/dong-man.png create mode 100644 code/public/template/videolaoniu/images/icon/duan-ju-da-quan.png create mode 100644 code/public/template/videolaoniu/images/icon/home.png create mode 100644 code/public/template/videolaoniu/images/icon/zong-yi.png create mode 100644 code/public/template/videolaoniu/images/icons.png create mode 100644 code/public/template/videolaoniu/images/palyer.png create mode 100644 code/public/template/videolaoniu/images/pic.png create mode 100644 code/public/template/videolaoniu/images/play.png create mode 100644 code/public/template/videolaoniu/js/ewave-common.js create mode 100644 code/public/template/videolaoniu/js/ewave-global.js create mode 100644 code/public/template/videolaoniu/js/jquery.lazyload.min.js create mode 100644 code/public/template/videolaoniu/js/jquery.min.js create mode 100644 code/public/template/videolaoniu/js/jquery.raty.js create mode 100644 code/public/template/videolaoniu/js/swiper-bundle.min.js create mode 100644 code/public/template/videolaoniu/static/js/home.js create mode 100644 code/public/template/videolaoniu/static/js/player.js create mode 100644 code/public/template/videolaoniu/static/js/playerconfig.js create mode 100644 code/public/template/videolaoniu/static/player/parse.js diff --git a/code/app/home/view/videoBoKu/video/getVideoInfo.html b/code/app/home/view/videoBoKu/video/getVideoInfo.html index c262211..bb30ecf 100644 --- a/code/app/home/view/videoBoKu/video/getVideoInfo.html +++ b/code/app/home/view/videoBoKu/video/getVideoInfo.html @@ -181,7 +181,7 @@
+ href='{site:vurl v_id="$arrVideo.v_id" v_py="$arrVideo.v_name_en"/}' title="{$arrVideo.v_name}"> diff --git a/code/app/home/view/videoBoKu/video/getVideoPlayUrl.html b/code/app/home/view/videoBoKu/video/getVideoPlayUrl.html index 13721e8..13e70fa 100644 --- a/code/app/home/view/videoBoKu/video/getVideoPlayUrl.html +++ b/code/app/home/view/videoBoKu/video/getVideoPlayUrl.html @@ -517,6 +517,7 @@ @@ -181,7 +118,7 @@ {block name="footer-js"}{/block} + src='/public/video/common.js?v={site:cfg code="STATIC_FILE_VERSION" encode="false"/}'> {// 全局统计 } @@ -189,8 +126,8 @@ {// 站点统计 } {$DomainModel->d_statis|raw} - - + + - + \ No newline at end of file diff --git a/code/app/home/view/videoLaoNiu/index/index.html b/code/app/home/view/videoLaoNiu/index/index.html index b417f5b..4f6342a 100644 --- a/code/app/home/view/videoLaoNiu/index/index.html +++ b/code/app/home/view/videoLaoNiu/index/index.html @@ -2,9 +2,9 @@ {block name="get-data"} -{video:listexp count="8" sort_type="tuijian" d_key="key" d_val="Video" cache_life="86400" export_name="arrVideoTuijian" +{video:listexp count="10" sort_type="tuijian" d_key="key" d_val="Video" cache_life="86400" export_name="arrVideoTuijian" /} -{video:listexp count="17" sort_type="piaofang" d_key="key" d_val="Video" cache_life="86400" +{video:listexp count="10" sort_type="piaofang" d_key="key" d_val="Video" cache_life="86400" export_name="arrVideoPiaofang" /} {site:grm page_code="h5_index" diff="0" num="100" g_key="arrGrm" /} @@ -133,91 +133,47 @@ export_name="arrVideoPiaofang" /} {block name="main"} +
-
+

+ {$DomainModel->d_name}-{$DomainModel->d_text_logo} +

+

{site:replace code="VIDEO@GETCATEGORYINDEX@TEXT"}

-
-

- {$DomainModel->d_name}-{$DomainModel->d_text_logo} -

-

{site:replace code="VIDEO@GETCATEGORYINDEX@TEXT"}

-
-
-
-
-
-
-
-
-

热门推荐

- 更多推荐 -
-
-
    - {foreach $arrVideoTuijian as $key=>$Video } - {include file="public/video-list-shu" start="0" col-lg="4"/} - {/foreach} -
-
-
-
+
+
+

热门推荐

- - -
-
-
-
-
-
-

最新上映

-
-
-
-
    - {video:list count="6" -sort_type="news" -d_key="key" d_val="Video" cache_life="86400"} - - {include file="public/video-list-shu" start="0" col-lg="6"/} - - {/video:list} -
-
-
-
+
+
+

好莱坞大片

+
+
+
    + {foreach $arrVideoPiaofang as $key=>$Video } + {include file="public/video-list-shu-pf" start="0" col-md="5"/} + {/foreach} +
{video:categorytype category_type="ONE" d_key="key" d_val="val"} - {include file="public/video-panel" /} + {include file="public/video-panel" /} {/video:categorytype} - - +
+ {/block} {block name="customize"} diff --git a/code/app/home/view/videoLaoNiu/public/footer.html b/code/app/home/view/videoLaoNiu/public/footer.html index c05010e..c9c3946 100644 --- a/code/app/home/view/videoLaoNiu/public/footer.html +++ b/code/app/home/view/videoLaoNiu/public/footer.html @@ -1,49 +1,46 @@ -
-
-
-
-
-
-
-
-

友情链接

-
-
-
-
- -
-
-
-
-
-
-
-

- +

+ -
-
+ XML地图 + - + 网站地图 + + {ad:list code="YOUQING_LIANJIE_GUANG_GAO" order="desc" limit="2" id="ad"} + {$ad.gg_wen_zi} + + {/ad:list}
-
-
    -
  • +

    Copyright © 2020-2025 + {$DomainModel->d_domain} + .All Rights Reserved .

    +

    本网站所有内容均来源于互联网,若收录的节目无意侵犯了贵司版权,请给我们留言,我们会第一时间处理!

    +

    反馈邮箱:{site:cfg code="YOU_XIANG" encode="false"/}

    + +
      +
    - + \ No newline at end of file diff --git a/code/app/home/view/videoLaoNiu/public/video-list-phb.html b/code/app/home/view/videoLaoNiu/public/video-list-phb.html index f9c7c2b..1d20a12 100644 --- a/code/app/home/view/videoLaoNiu/public/video-list-phb.html +++ b/code/app/home/view/videoLaoNiu/public/video-list-phb.html @@ -1,21 +1,13 @@
  • + + {$key} + {$Video.v_box_office ?? 0} {if !empty($arrGrm[$key + [start]])} {$arrGrm[$key+[start]]|raw} {/if} - - - - {$Video.v_box_office ?? 0} - - - {$key} - - {$Video.v_name} - + + {$Video.v_name}
  • diff --git a/code/app/home/view/videoLaoNiu/public/video-list-shu-pf.html b/code/app/home/view/videoLaoNiu/public/video-list-shu-pf.html new file mode 100644 index 0000000..c69ec1b --- /dev/null +++ b/code/app/home/view/videoLaoNiu/public/video-list-shu-pf.html @@ -0,0 +1,24 @@ + + +
  • + {if !empty($arrGrm[$key + [start]])} + {$arrGrm[$key+[start]]|raw} + {/if} + + {$Video.v_name ?? ''} - {$Video.v_parent_category ?? ''}{$Video.v_category ?? ''}免费高清电影在线观看 + + {$Video.v_box_office ?? 0}亿 + {$Video.v_name} + {$Video.v_remarks} + + + +
  • \ No newline at end of file diff --git a/code/app/home/view/videoLaoNiu/public/video-list-shu.html b/code/app/home/view/videoLaoNiu/public/video-list-shu.html index 6064ea1..ae50a95 100644 --- a/code/app/home/view/videoLaoNiu/public/video-list-shu.html +++ b/code/app/home/view/videoLaoNiu/public/video-list-shu.html @@ -1,25 +1,28 @@ - -
  • -
    - {if !empty($arrGrm[$key + [start]])} - {$arrGrm[$key+[start]]|raw} - {/if} - - + {if !empty($arrGrm[$key + [start]])} + {$arrGrm[$key+[start]]|raw} + {/if} + + {$Video.v_name ?? ''} - {$Video.v_parent_category ?? ''}{$Video.v_category ?? ''}免费高清电影在线观看 - - {$Video.v_remarks} - - -
    -

    - {$Video.v_name}

    - -
    + + {$Video.v_score} + {$Video.v_name} + {$Video.v_remarks} + +

    + {$Video.v_name} +

    + -
  • + \ No newline at end of file diff --git a/code/app/home/view/videoLaoNiu/public/video-panel.html b/code/app/home/view/videoLaoNiu/public/video-panel.html index bd3f4f3..64771ec 100644 --- a/code/app/home/view/videoLaoNiu/public/video-panel.html +++ b/code/app/home/view/videoLaoNiu/public/video-panel.html @@ -1,48 +1,75 @@ +
    +
    +

    {$val.v_category}

    + + 更多 > + + + +
    +
    +
+
+
+
    + {video:list count="12" v_parent_category_en="$val.v_category_en" sort_type="news" d_key="key" d_val="Video" cache_life="86400"} + {include file="public/video-list-shu" start="27" col-md="4"/} + {/video:list} +
\ No newline at end of file diff --git a/code/app/home/view/videoLaoNiu/user/getHistory.html b/code/app/home/view/videoLaoNiu/user/getHistory.html index 1d4e6b1..628236a 100644 --- a/code/app/home/view/videoLaoNiu/user/getHistory.html +++ b/code/app/home/view/videoLaoNiu/user/getHistory.html @@ -25,54 +25,44 @@ {/block} {block name="main"} -
+
+ +
+
+
-
-
-
-
-
-
-
-

观看记录

-
-
-
    - -
-
+
+

观看记录

+
+ +
+
    + + +
+
-