From af3f48d7039168f984b1dabd70105a32c2cfcea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mac=C2=B7ufutx?= Date: Fri, 21 Aug 2026 15:52:30 +0800 Subject: [PATCH] =?UTF-8?q?20260821=E3=80=8C=E5=8D=95=E8=BA=AB=E5=B9=BF?= =?UTF-8?q?=E5=9C=BA=E4=BF=AE=E5=A4=8D=E8=B7=AF=E7=94=B1=E7=BC=93=E5=AD=98?= =?UTF-8?q?=E3=80=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/i18n/zh-CN.json | 1 + src/components/HlsPlayer.vue | 287 ++++++++++++++++++ src/main.js | 3 +- src/views/course/courseDetailList.vue | 1 + .../makingFriendsModule/makingFriendsList.vue | 42 ++- src/views/makingFriendsModule/userDetail.vue | 3 +- 6 files changed, 332 insertions(+), 5 deletions(-) create mode 100644 src/components/HlsPlayer.vue diff --git a/src/assets/i18n/zh-CN.json b/src/assets/i18n/zh-CN.json index 9d28fbc..c4fdec2 100644 --- a/src/assets/i18n/zh-CN.json +++ b/src/assets/i18n/zh-CN.json @@ -20,6 +20,7 @@ "Get_again": "重新获取", "Have_evaluation": "您已经评价过该课程啦", "I_have_a_line_in_the_sand": "我也是有底线的", + "please_input_search_keyword": "请输入搜索内容", "In_the_authentication": "认证中...", "In_the_land": "登陆中...", "Know_the": "知道了", diff --git a/src/components/HlsPlayer.vue b/src/components/HlsPlayer.vue new file mode 100644 index 0000000..61eae52 --- /dev/null +++ b/src/components/HlsPlayer.vue @@ -0,0 +1,287 @@ + + + + + diff --git a/src/main.js b/src/main.js index 4c223a4..e894d7a 100644 --- a/src/main.js +++ b/src/main.js @@ -57,10 +57,11 @@ Vue.prototype.$clipboard = clipboard Vue.prototype.$md5 = md5 Vue.use(wxShare) Vue.use(CanvasPoster) -import { RadioGroup, Radio, AddressEdit, Icon, Loading } from 'vant' +import { RadioGroup, Radio, AddressEdit, Icon, Loading,Search } from 'vant' Vue.use(AddressEdit) Vue.use(Radio) Vue.use(RadioGroup) +Vue.use(Search) Vue.use(Icon) Vue.use(Loading) diff --git a/src/views/course/courseDetailList.vue b/src/views/course/courseDetailList.vue index 6f0a340..ef902cf 100644 --- a/src/views/course/courseDetailList.vue +++ b/src/views/course/courseDetailList.vue @@ -1,5 +1,6 @@