zaijin преди 1 година
родител
ревизия
457eab3509

+ 16 - 0
src/api/PublicClasses/index.js

@@ -0,0 +1,16 @@
+import request from "@/utils/request";
+/**
+ * 获取章节
+ * @param {*} params
+ * @returns
+ */
+export function getPublicClassesList(params) {
+  return request({
+    url: `/app/publicclass/${params.id}`,
+    method: "get",
+    headers: {
+      noLoginFlag: true,
+    },
+    params,
+  });
+}

BIN
src/assets/images/play-btn.png


+ 19 - 1
src/router/index.js

@@ -432,6 +432,24 @@ const routes = [
           title: "通知详情",
         },
       },
+      {
+        path: "publicclasses",
+        name: "PublicClassesIndex",
+        component: () =>
+          import("@/views/PublicClasses/PublicClassesIndex.vue"),
+        meta: {
+          title: "公共课程",
+        },
+      },
+      {
+        path: "classesvideo",
+        name: "ClassesVideoIndex",
+        component: () =>
+          import("@/views/PublicClasses/ClassesVideo/ClassesVideoIndex.vue"),
+        meta: {
+          title: "详情",
+        },
+      },
     ],
   },
   {
@@ -456,7 +474,7 @@ router.beforeEach((to, from, next) => {
     document.title = to.meta.title;
   }
   if (store.state.user.token && !store.state.user.isLogin) {
-    store.dispatch("GetUserInfo").then(res => {
+    store.dispatch("GetUserInfo").then((res) => {
       next();
     });
   } else {

+ 9 - 3
src/views/Home/HomeIndex.vue

@@ -19,9 +19,7 @@
         <div class="home-main-latest-content">
           <div
             class="hmlc-title"
-            @click="
-              jumpPage('/newsdetails', { id: latestNews.artId, type: 'news' })
-            "
+            @click="newsItemClick(latestNews)"
           >
             {{ latestNews.artTitle }}
           </div>
@@ -250,6 +248,14 @@ export default {
       }
       this.dialogObj.open = false;
     },
+    newsItemClick(item) {
+      if (item.artLinkUrl) location.href = item.artLinkUrl;
+      else
+        this.jumpPage("newsdetails", {
+          id: item.artId,
+          type: "news",
+        });
+    },
   },
 };
 </script>

+ 13 - 23
src/views/Home/components/NewsNotice.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-30 14:15:32
  * @LastEditors: 空白格
- * @LastEditTime: 2022-12-12 13:26:26
+ * @LastEditTime: 2023-04-24 17:18:58
  * @FilePath: \veterans_client_web\src\views\Home\components\NewsNotice.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -16,12 +16,7 @@
           <el-carousel :interval="5000" arrow="never" height="395px">
             <el-carousel-item v-for="(item, index) in newsList" :key="index">
               <el-image
-                @click="
-                  jumpPage('newsdetails', {
-                    id: item.artId,
-                    type: 'news',
-                  })
-                "
+                @click="newsItemClick(item)"
                 class="image"
                 :src="
                   item.artImage || require('@/assets/images/default-news.jpg')
@@ -39,15 +34,7 @@
                   ></el-image>
                 </div>
               </el-image>
-              <div
-                class="title"
-                @click="
-                  jumpPage('newsdetails', {
-                    id: item.artId,
-                    type: 'news',
-                  })
-                "
-              >
+              <div class="title" @click="newsItemClick(item)">
                 {{ item.artTitle || "" }}
               </div>
             </el-carousel-item>
@@ -60,12 +47,7 @@
             <el-tab-pane label="新闻动态" name="first">
               <ul class="news-infomation">
                 <li
-                  @click="
-                    jumpPage('newsdetails', {
-                      id: item.artId,
-                      type: 'news',
-                    })
-                  "
+                  @click="newsItemClick(item)"
                   class="news-infomation-item"
                   v-for="(item, index) in newsList"
                   :key="index"
@@ -158,7 +140,7 @@ export default {
      */
     getNewsInfo(id) {
       getNewsData({ id }).then((res) => {
-        this.$emit('getLastNews', res?.data ?? {})
+        this.$emit("getLastNews", res?.data ?? {});
       });
     },
     /**
@@ -181,6 +163,14 @@ export default {
     jumpPage(path, query) {
       this.$router.push({ path, query });
     },
+    newsItemClick(item) {
+      if (item.artLinkUrl) location.href = item.artLinkUrl;
+      else
+        this.jumpPage("newsdetails", {
+          id: item.artId,
+          type: "news",
+        });
+    },
   },
 };
 </script>

+ 83 - 0
src/views/PublicClasses/ClassesVideo/ClassesVideoIndex.vue

@@ -0,0 +1,83 @@
+<!--
+ * @Description: 公共课程详情
+ * @Author: 空白格
+ * @Date: 2023-04-24 14:43:30
+ * @LastEditors: 空白格
+ * @LastEditTime: 2023-04-24 17:08:06
+ * @FilePath: \veterans_client_web\src\views\PublicClasses\ClassesVideo\ClassesVideoIndex.vue
+ * @Copyright: Copyright (c) 2016~2023 by 空白格, All Rights Reserved.
+-->
+<template>
+  <div class="video">
+    <div class="video-box" v-loading="loading">
+      <div class="video-box-title">{{ chapterName }}</div>
+      <video
+        ref="video"
+        id="myVideo"
+        @timeupdate="timeUpdate"
+        :src="videoUrl"
+        controls
+        :initial-time="initial_time"
+        object-fit="fill"
+        play-btn-position="center"
+        @ended="ended"
+        @loadedmetadata="loadedmetadata"
+      />
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  name: "ClassesVideoIndex",
+  data() {
+    return {
+      videoUrl: "",
+      initial_time: "",
+      chapterName: '',
+      loading: false
+    };
+  },
+  created() {
+    const { videoUrl, chapterName } = this.$route.query
+    if (videoUrl) {
+      this.loading = false;
+    }
+    this.videoUrl = videoUrl
+    this.chapterName = chapterName
+  },
+  methods: {
+    timeUpdate() {},
+    ended() {},
+    loadedmetadata() {
+      this.loading = false;
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+.video {
+  background: #181c1e;
+
+  &-box {
+    width: 70%;
+    min-width: 600px;
+    margin: 0 auto;
+    padding: 10px 0 40px;
+
+    &-title {
+      font-size: 20px;
+      color: #fff;
+      line-height: 22px;
+      padding: 10px 0;
+    }
+
+    video {
+      width: 100%;
+      background-color: #fff;
+      aspect-ratio: 16 / 8;
+    }
+  }
+}
+</style>

+ 205 - 0
src/views/PublicClasses/PublicClassesIndex.vue

@@ -0,0 +1,205 @@
+<!--
+ * @Description:  公共课程
+ * @Author: 空白格
+ * @Date: 2023-04-24 10:52:11
+ * @LastEditors: 空白格
+ * @LastEditTime: 2023-04-24 17:20:19
+ * @FilePath: \veterans_client_web\src\views\PublicClasses\PublicClassesIndex.vue
+ * @Copyright: Copyright (c) 2016~2023 by 空白格, All Rights Reserved.
+-->
+<template>
+  <div class="app-main">
+    <div class="BannerBreadcrumb-wrap">
+      <BannerBreadcrumb title="颂军魂" :breadcrumb="true" />
+    </div>
+    <section class="app-main-box">
+      <div class="app-main-box-content">
+        <div class="video-title">颂军魂</div>
+        <div class="video-list" v-if="videoList.length" v-loading="loading">
+          <el-row :gutter="48">
+            <el-col
+              :xs="24"
+              :sm="12"
+              :md="6"
+              :lg="6"
+              :xl="6"
+              v-for="(item, index) in videoList"
+              :key="index"
+            >
+              <div class="video-list-item" @click="videoClick(item)">
+                <div class="video-list-item-image">
+                  <el-image
+                    style="width: 100%; height: 100%; border-radius: 6px"
+                    :src="item.coverUrl"
+                  />
+                  <el-image
+                    class="play-btn"
+                    :src="require('@/assets/images/play-btn.png')"
+                  />
+                </div>
+                <div class="video-list-item-title">{{ item.chapterName }}</div>
+                <div class="video-list-item-subtitle">{{ '颂军魂' }}</div>
+              </div>
+            </el-col>
+          </el-row>
+        </div>
+        <el-empty description="暂无数据" v-else />
+        <div class="pagination" v-if="total">
+          <el-pagination
+            background
+            layout="prev, pager, next"
+            :page-size="queryParams.pageSize"
+            :total="total"
+            @current-change="currentChange"
+          />
+        </div>
+      </div>
+    </section>
+  </div>
+</template>
+
+<script>
+import BannerBreadcrumb from "@/components/BannerBreadcrumb";
+import { getDictData } from "@/api/Dict";
+import { getPublicClassesList } from "@/api/PublicClasses";
+export default {
+  name: "PublicClassesIndex",
+  components: {
+    BannerBreadcrumb,
+  },
+  data() {
+    return {
+      queryParams: {
+        pageNum: 1,
+        pageSize: 8,
+      },
+      total: 0,
+      loading: false,
+      videoList: [],
+    };
+  },
+  created() {
+    this.initDict();
+    this.getList();
+  },
+  methods: {
+    async initDict() {
+      const { code, data } = await getDictData({ key: "site_type" });
+      if (code === 200) {
+        const type = this.iswap();
+        const { text } = data.find((item) => item.label === type);
+        console.log(location.href.includes(text));
+        if (!location.href.includes(text)) {
+          location.href = text;
+        }
+      }
+    },
+    async getList() {
+      this.loading = true;
+      const { code, data } = await getPublicClassesList({ id: 1 });
+      if (code === 200) {
+        this.videoList = data?.rows ?? [];
+        this.total = Number(data?.total ?? 0);
+        this.loading = false;
+      }
+    },
+    videoClick(item) {
+      this.$router.push({
+        path: "/classesvideo",
+        query: {
+          videoUrl: item.videoUrl,
+          chapterName: item.chapterName
+        }
+      });
+    },
+    currentChange(page) {
+      this.queryParams.pageNum = page;
+      this.getList();
+    },
+    iswap() {
+      var uA = navigator.userAgent.toLowerCase();
+      var ipad = uA.match(/ipad/i) == "ipad";
+      var iphone = uA.match(/iphone os/i) == "iphone os";
+      var midp = uA.match(/midp/i) == "midp";
+      var uc7 = uA.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
+      var uc = uA.match(/ucweb/i) == "ucweb";
+      var android = uA.match(/android/i) == "android";
+      var windowsce = uA.match(/windows ce/i) == "windows ce";
+      var windowsmd = uA.match(/windows mobile/i) == "windows mobile";
+      if (
+        !(
+          ipad ||
+          iphone ||
+          midp ||
+          uc7 ||
+          uc ||
+          android ||
+          windowsce ||
+          windowsmd
+        )
+      ) {
+        // PC 端
+        return "Pc";
+      } else {
+        // 移动端
+        return "Mobile";
+      }
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+.video-title {
+  font-size: 24px;
+  color: #222222;
+  margin-bottom: 20px;
+}
+
+.video-list {
+  // margin-bottom: 40px;
+
+  &-item {
+    margin-bottom: 40px;
+
+    &-image {
+      width: 100%;
+      height: 162px;
+      margin-bottom: 16px;
+      position: relative;
+
+      .play-btn {
+        position: absolute;
+        width: 70px;
+        height: 70px;
+        top: 50%;
+        left: 50%;
+        margin-left: -35px;
+        margin-top: -35px;
+        cursor: pointer;
+      }
+    }
+
+    &-title {
+      font-size: 20px;
+      color: #2e2e2e;
+      margin-bottom: 5px;
+    }
+
+    &-subtitle {
+      font-size: 16px;
+      color: #818181;
+    }
+  }
+}
+
+.pagination {
+  text-align: center;
+  :deep(.el-pager .active) {
+    background-color: #ff3939;
+  }
+  :deep(.el-pagination.is-background .el-pager li:not(.disabled).active) {
+    background-color: #ff3939;
+  }
+}
+</style>