diff --git a/README.md b/README.md index edaa49b..ff73879 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,9 @@ >新增内容: > ->- 新增新版本线上测试地址: [点击访问](http://1.94.30.26:3600/index) ->- 新增首页轮播组件, (宽度是否满屏待定) ->- 更新部分按钮连接跳转异常问题 +>- 新增PC端播放链接测试页, 可通过右下角工具栏进入: [播放测试](http://1.94.30.26:3600/custom/player) +>- 修复手机端轮播图滑动切换后无法自动播放的问题 +>- 轮播图海报改用第三方图床进行存储 ## 目录结构 diff --git a/client/src/assets/image/banner/banner01.jpg b/client/src/assets/image/banner/banner01.jpg deleted file mode 100644 index 0f67b3b..0000000 Binary files a/client/src/assets/image/banner/banner01.jpg and /dev/null differ diff --git a/client/src/assets/image/banner/banner02.jpg b/client/src/assets/image/banner/banner02.jpg deleted file mode 100644 index 482d8ff..0000000 Binary files a/client/src/assets/image/banner/banner02.jpg and /dev/null differ diff --git a/client/src/assets/image/banner/banner03.jpg b/client/src/assets/image/banner/banner03.jpg deleted file mode 100644 index 9f24409..0000000 Binary files a/client/src/assets/image/banner/banner03.jpg and /dev/null differ diff --git a/client/src/assets/image/banner/banner04.jpeg b/client/src/assets/image/banner/banner04.jpeg deleted file mode 100644 index 2999a05..0000000 Binary files a/client/src/assets/image/banner/banner04.jpeg and /dev/null differ diff --git a/client/src/components/index/Util.vue b/client/src/components/index/Util.vue index dcd9f89..5620cc2 100644 --- a/client/src/components/index/Util.vue +++ b/client/src/components/index/Util.vue @@ -1,75 +1,79 @@ @@ -77,30 +81,34 @@ const changeStyle = (type:string)=>{ \ No newline at end of file diff --git a/client/src/router/router.ts b/client/src/router/router.ts index e108453..9c22d26 100644 --- a/client/src/router/router.ts +++ b/client/src/router/router.ts @@ -24,6 +24,7 @@ import FilmClass from "../views/manage/film/FilmClass.vue"; import Film from "../views/manage/film/Film.vue"; import FileUpload from "../views/manage/file/FileUpload.vue"; import FilmAdd from "../views/manage/film/FilmAdd.vue"; +import CustomPlay from "../views/index/CustomPlay.vue"; // 2. 定义一个路由 @@ -39,6 +40,7 @@ const routes = [ {path: 'search', component: SearchFilm}, {path: 'filmClassify', component: FilmClassify}, {path: 'filmClassifySearch', component: FilmClassifySearch}, + {path: '/custom/player', component: CustomPlay}, ] }, {path: '/login', component: Login}, diff --git a/client/src/style.css b/client/src/style.css index e021c90..9751096 100644 --- a/client/src/style.css +++ b/client/src/style.css @@ -16,17 +16,20 @@ /*公共颜色*/ --bg-light: #ffffff; + --text-color-primary: #ffffff; --content-text-color: #888888; --paging-parmary-color: #9b49e7d6; + --paging-parmary-color-hover: #a574b7; --border-gray-color: #0000001f; - --btn-primary-color: #9b49e7; + --btn-primary-color: #8636cc; --btn-pink-color: #d942bf; --btn-bg-linght: #fff; --bg-fill-light: #8d00fb1a; + } diff --git a/client/src/views/index/CustomPlay.vue b/client/src/views/index/CustomPlay.vue new file mode 100644 index 0000000..a343b32 --- /dev/null +++ b/client/src/views/index/CustomPlay.vue @@ -0,0 +1,219 @@ + + + + + \ No newline at end of file diff --git a/client/src/views/index/Home.vue b/client/src/views/index/Home.vue index b599105..053358c 100644 --- a/client/src/views/index/Home.vue +++ b/client/src/views/index/Home.vue @@ -1,7 +1,7 @@