Browse Source

调整部分页面

yangzj 2 years ago
parent
commit
2aa04f9091

+ 22 - 0
src/router/index.js

@@ -185,6 +185,28 @@ const routes = [
           title: '学历提升详情'
         }
       },
+      {
+        path: 'educationpromote/video',
+        name: 'CourseVideoIndex',
+        component: () =>
+          import(
+            '@/views/EducationPromote/CourseVideo/CourseVideoIndex.vue'
+          ),
+        meta: {
+          title: '课程详情'
+        }
+      },
+      {
+        path: 'educationpromote/courses',
+        name: 'SelectedCoursesIndex',
+        component: () =>
+          import(
+            '@/views/EducationPromote/ProfessionalIntroduction/SelectedCourses/SelectedCoursesIndex.vue'
+          ),
+        meta: {
+          title: '更多课程'
+        }
+      },
       {
         path: 'educationpromote/recruitstudents',
         name: 'RecruitStudentsIndex',

+ 409 - 0
src/views/EducationPromote/CourseVideo/CourseVideoIndex.vue

@@ -0,0 +1,409 @@
+<!--
+ * @Description: 课程视频
+ * @Author: 空白格
+ * @Date: 2022-08-29 14:30:20
+ * @LastEditors: 空白格
+ * @LastEditTime: 2022-08-29 14:37:20
+ * @FilePath: \veterans_client_web\src\views\EducationPromote\CourseVideo\CourseVideoIndex.vue
+ * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
+-->
+<template>
+  <div class="course-details">
+    <div class="course-details-breadcrumb">
+      <el-breadcrumb
+        class="course-details-breadcrumb-content"
+        separator-class="el-icon-arrow-right"
+      >
+        <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
+        <el-breadcrumb-item
+          v-for="(item, index) in breadcrumbList"
+          :key="index"
+          :to="'/' + item.path"
+          >{{ item.label }}</el-breadcrumb-item
+        >
+      </el-breadcrumb>
+    </div>
+    <div class="course-details-video">
+      <div class="course-details-video-box">
+        <course-video
+          ref="courseVideo"
+          :courseDetails="detailsInfo"
+          @changeClasses="changeClasses"
+        />
+      </div>
+    </div>
+    <div class="course-details-comment" v-loading="commentObj.loading">
+      <el-row :gutter="11">
+        <el-col :xs="24" :sm="24" :md="16" :lg="16" :xl="16">
+          <div class="course-details-comment-content">
+            <div class="cdcc-header">
+              <div class="cdcc-header-title">课程评论</div>
+              <div class="cdcc-header-total">
+                共{{ commentObj.total || 0 }}条评论
+              </div>
+            </div>
+            <div class="cdcc-list" v-if="commentObj.list.length">
+              <div
+                class="cdcc-list-item"
+                v-for="(item, index) in commentObj.list"
+                :key="index"
+              >
+                <div class="cdcc-list-item-left">
+                  <el-avatar
+                    shape="square"
+                    :size="77"
+                    :src="item.createByAvatar"
+                  ></el-avatar>
+                </div>
+                <div class="cdcc-list-item-right">
+                  <div class="clir-item">{{ item.createBy }}</div>
+                  <div class="clir-item">
+                    <div>
+                      <el-rate
+                        v-model="item.starLevel"
+                        :disabled="true"
+                        :colors="['#C4C4C4', '#C4C4C4', '#C4C4C4']"
+                      ></el-rate>
+                    </div>
+                    <div class="date">{{ item.createTime }}</div>
+                  </div>
+                  <div class="clir-item">{{ item.content }}</div>
+                </div>
+              </div>
+              <div class="pagination" v-if="commentObj.total">
+                <el-pagination
+                  background
+                  layout="prev, pager, next"
+                  :page-size="commentObj.queryParams.pageSize"
+                  :total="commentObj.total"
+                  @current-change="currentChange"
+                />
+              </div>
+            </div>
+            <div class="empty" v-else>
+              <el-empty description="评论数据为空"></el-empty>
+            </div>
+          </div>
+        </el-col>
+        <el-col :xs="24" :sm="24" :md="8" :lg="8" :xl="8">
+          <div class="course-details-comment-submit">
+            <div class="cdcs-title">我的评论</div>
+            <div class="cdcs-form">
+              <el-form
+                ref="form"
+                :model="commentObj.form"
+                :rules="commentObj.rules"
+              >
+                <el-form-item prop="starLevel">
+                  <el-rate v-model="commentObj.form.starLevel"></el-rate>
+                </el-form-item>
+                <el-form-item prop="content">
+                  <el-input
+                    type="textarea"
+                    :rows="6"
+                    placeholder="请输入您的评价"
+                    v-model="commentObj.form.content"
+                  >
+                  </el-input>
+                </el-form-item>
+                <el-form-item>
+                  <div class="cdcs-form-btn">
+                    <el-button
+                      class="cdcs-form-btn-sub"
+                      @click="submitComment"
+                      :loading="commentObj.subLoading"
+                      >提交</el-button
+                    >
+                  </div>
+                </el-form-item>
+              </el-form>
+            </div>
+          </div>
+        </el-col>
+      </el-row>
+    </div>
+  </div>
+</template>
+
+<script>
+import CourseVideo from "@/components/CourseVideo";
+import { getCommentList, addComment } from "@/api/AdaptiveTraining";
+import { getSkillVideoDetails } from "@/api/SkillTraining";
+export default {
+  name: "CourseVideoIndex",
+  components: {
+    CourseVideo,
+  },
+  data() {
+    return {
+      breadcrumbList: [],
+      classesId: null,
+      detailsInfo: {},
+      currentClasses: {},
+      commentObj: {
+        total: 0,
+        list: [],
+        loading: false,
+        subLoading: false,
+        queryParams: {
+          pageNum: 1,
+          pageSize: 10,
+          tabId: undefined,
+        },
+        form: {
+          tabId: "",
+          starLevel: 0,
+          content: "",
+        },
+        rules: {
+          starLevel: [{ required: true, message: "请评分", trigger: "change" }],
+          content: [
+            { required: true, message: "请输入您的评价", trigger: "blur" },
+          ],
+        },
+      },
+    };
+  },
+  created() {
+    this.handleRouter();
+    const { id } = this.$route.query;
+    if (id) {
+      this.classesId = id;
+      this.commentObj.queryParams.tabId = id;
+      this.commentObj.form.tabId = id;
+      this.getDetails();
+      this.getCommentList();
+    }
+  },
+  methods: {
+    /**
+     * 获取课程详情
+     * @date 2022-08-24
+     * @param {any} id
+     * @returns {any}
+     */
+    getDetails() {
+      getSkillVideoDetails({ id: this.classesId }).then((res) => {
+        if (res.code === 200) {
+          this.detailsInfo = res?.data;
+        }
+      });
+    },
+    /**
+     * 切换章节触发
+     * @date 2022-08-25
+     * @returns {any}
+     */
+    changeClasses() {
+      this.getDetails();
+    },
+    /**
+     * 获取课程评论
+     * @date 2022-08-25
+     * @returns {any}
+     */
+    getCommentList() {
+      this.commentObj.loading = true;
+      getCommentList(this.commentObj.queryParams)
+        .then((res) => {
+          if (res.code === 200) {
+            this.commentObj.list = res?.rows;
+            this.commentObj.total = Number(res?.total);
+          }
+          this.commentObj.loading = false;
+        })
+        .catch(() => {
+          this.commentObj.loading = false;
+        });
+    },
+    /**
+     * 分页切换触发
+     * @date 2022-08-25
+     * @param {any} page
+     * @returns {any}
+     */
+    currentChange(page) {
+      this.commentObj.queryParams.pageNum = page;
+      this.getCommentList();
+    },
+    /**
+     * 提交评论
+     * @date 2022-08-25
+     * @returns {any}
+     */
+    submitComment() {
+      this.$refs["form"].validate((valid) => {
+        if (valid) {
+          this.commentObj.subLoading = true;
+          addComment(this.commentObj.form)
+            .then((res) => {
+              if (res.code === 200) {
+                this.$message.success("评论成功!");
+                this.$refs["form"].resetFields();
+                this.commentObj.queryParams.pageNum = 1;
+                this.getCommentList();
+              } else {
+                this.$message.error(res.msg || "评论失败!");
+              }
+              this.commentObj.subLoading = false;
+            })
+            .catch(() => {
+              this.commentObj.subLoading = false;
+            });
+        }
+      });
+    },
+    /**
+     * 根据路由获取面包屑
+     * @date 2022-08-24
+     * @returns {any}
+     */
+    handleRouter() {
+      let path = this.$router.currentRoute.path.slice(1),
+        routerOptions = this.$router.options.routes[0].children,
+        breadcrumbList = [],
+        pathList;
+      if (path) {
+        pathList = path.split("/").filter((item) => item && item.trim());
+        pathList[pathList.length - 1] = path;
+        pathList.forEach((item) => {
+          routerOptions.forEach((jitem) => {
+            if (item === jitem.path) {
+              breadcrumbList.push({
+                path: jitem.path,
+                label: jitem.meta.title,
+              });
+            }
+          });
+        });
+        this.breadcrumbList = breadcrumbList;
+      }
+    },
+  },
+  beforeDestroy() {
+    this.$refs["courseVideo"].submitVideoDuration();
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+.course-details {
+  &-breadcrumb {
+    height: 57px;
+    line-height: 57px;
+    background: #43565f;
+    &-content {
+      width: 70%;
+      height: 57px;
+      line-height: 57px;
+      min-width: 600px;
+      margin: 0 auto;
+      :deep(.el-breadcrumb__inner.is-link) {
+        color: #fff;
+        font-size: 14px;
+      }
+    }
+  }
+  &-video {
+    background: #181c1e;
+    &-box {
+      width: 70%;
+      min-width: 600px;
+      margin: 0 auto;
+    }
+  }
+  &-comment {
+    width: 70%;
+    min-width: 600px;
+    margin: 16px auto 0;
+    &-content {
+      background: #fff;
+      padding: 30px 20px;
+      .cdcc-header {
+        display: flex;
+        justify-content: space-between;
+        align-items: center;
+        border-bottom: solid 1px #cbcbcb;
+        padding-bottom: 10px;
+        &-title {
+          color: #1a1a1a;
+          font-size: 20px;
+          font-weight: 500;
+        }
+        &-total {
+          color: #8d8d8d;
+          font-size: 14px;
+        }
+      }
+      .cdcc-list {
+        padding: 30px 0 0;
+        &-item {
+          display: flex;
+          margin-bottom: 22px;
+          &-left {
+            margin-right: 14px;
+          }
+          &-right {
+            .clir-item {
+              display: flex;
+              font-size: 14px;
+              margin-bottom: 5px;
+              :deep(.el-rate__icon) {
+                margin-right: 2px;
+              }
+              .date {
+                color: #a5a5a5;
+                margin-left: 30px;
+                font-size: 13px;
+              }
+              &:first-child {
+                color: #3d3d3d;
+                font-size: 16px;
+              }
+              &:last-child {
+                color: #6c6c6c;
+              }
+            }
+          }
+        }
+        .pagination {
+          text-align: center;
+          margin-top: 20px;
+          :deep(.el-pager .active) {
+            background-color: #ff3939;
+          }
+          :deep(.el-pagination.is-background
+              .el-pager
+              li:not(.disabled).active) {
+            background-color: #ff3939;
+          }
+        }
+      }
+      .empty {
+        padding: 30px 0;
+      }
+    }
+    &-submit {
+      background: #fff;
+      padding: 30px 20px;
+      .cdcs-title {
+        font-size: 20px;
+        color: #1a1a1a;
+        margin-bottom: 14px;
+      }
+      .cdcs-form {
+        &-btn {
+          width: 100%;
+          text-align: center;
+          &-sub {
+            width: 80%;
+            background-color: #709078;
+            color: #fff;
+            border-radius: 30px;
+          }
+        }
+      }
+    }
+  }
+}
+</style>

+ 4 - 3
src/views/EducationPromote/EducationPromoteIndex.vue

@@ -2,8 +2,8 @@
  * @Description: 学历提升
  * @Author: 空白格
  * @Date: 2022-08-12 13:47:26
- * @LastEditors: wangcc
- * @LastEditTime: 2022-08-29 10:47:03
+ * @LastEditors: 空白格
+ * @LastEditTime: 2022-08-29 14:15:17
  * @FilePath: \veterans_client_web\src\views\EducationPromote\EducationPromoteIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -108,6 +108,7 @@
                 @click="
                   jumpPage('/educationpromote/professionalintroduction', {
                     id: item.id,
+                    schoolName: item.schoolName
                   })
                 "
               >
@@ -345,7 +346,7 @@ export default {
           margin-bottom: 5px;
           &:last-child {
             color: #a2a2a2;
-            font-size: 16px;
+            font-size: 14px;
           }
         }
       }

+ 8 - 6
src/views/EducationPromote/ProfessionalIntroduction/ProfessionalIntroductionIndex.vue

@@ -2,8 +2,8 @@
  * @Description: 专业详情
  * @Author: 空白格
  * @Date: 2022-08-29 10:13:44
- * @LastEditors: wangcc
- * @LastEditTime: 2022-08-29 12:05:02
+ * @LastEditors: 空白格
+ * @LastEditTime: 2022-08-29 14:38:54
  * @FilePath: \veterans_client_web\src\views\EducationPromote\ProfessionalIntroduction\ProfessionalIntroductionIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -38,7 +38,7 @@
             <h3>精选课程</h3>
             <span @click="more">更多></span>
           </div>
-          <div class="swpier-box" v-if="skillDetail.courseList.length > 0">
+          <div class="swpier-box" v-if="skillDetail.courseList && skillDetail.courseList.length > 0">
             <swiper :options="swiperOption">
               <swiper-slide v-for="(img, index) in skillDetail.courseList" :key="index">
                 <div class="news-box" @click="skillClick(img)">
@@ -120,8 +120,10 @@ export default {
     },
     more() {
       this.$router.push({
-        name: 'SelectedCoursesIndex',
-        query: { id: this.newsId }
+        path: '/educationpromote/courses',
+        query: {
+          id: this.newsId
+        }
       });
     },
     /**
@@ -132,7 +134,7 @@ export default {
      */
     skillClick(item) {
       this.$router.push({
-        path: '/skilltraining/coursevideo',
+        path: '/educationpromote/video',
         query: {
           id: item.id
         }

+ 278 - 0
src/views/EducationPromote/ProfessionalIntroduction/SelectedCourses/SelectedCoursesIndex.vue

@@ -0,0 +1,278 @@
+<!--
+ * @Description: 学历提升 => 专业详情 => 精选课程
+ * @Author: 空白格
+ * @Date: 2022-08-29 14:26:06
+ * @LastEditors: 空白格
+ * @LastEditTime: 2022-08-29 14:39:02
+ * @FilePath: \veterans_client_web\src\views\EducationPromote\ProfessionalIntroduction\SelectedCourses\SelectedCoursesIndex.vue
+ * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
+-->
+
+<template>
+  <div>
+    <banner title="报班通知" :isRouter="true"></banner>
+    <div class="deliverBox">
+      <div class="_container">
+        <div class="box-list">
+          <h1>精选课程</h1>
+          <div
+            style="display: table; width: 100%; padding: 20px"
+            v-if="deliverList.length"
+          >
+            <div
+              class="news-box"
+              v-for="(item, index) in deliverList"
+              :key="index"
+              @click="skillClick(item)"
+            >
+              <img :src="item.img" alt />
+              <div class="video"></div>
+              <p class="title">{{ item.name }}</p>
+              <!-- <p class="state">线上课程</p> -->
+            </div>
+          </div>
+          <el-empty description="课程数据为空" v-else></el-empty>
+          <div class="pagination" v-if="total && deliverList.length">
+            <el-pagination
+              background
+              layout="prev, pager, next"
+              :page-size="queryParams.pageSize"
+              :total="total"
+              @current-change="currentChange"
+            />
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+import banner from "@/components/BannerBreadcrumb/index.vue";
+import { listlDetail } from "@/api/SkillTraining/index";
+export default {
+  name: "DeliverIndex",
+  components: { banner },
+  data() {
+    return {
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: this.$route.query.id,
+      },
+      total: 0,
+      loading: false,
+      deliverList: [],
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /**
+     * 分页切换触发
+     * @date 2022-08-16
+     * @param {any} page
+     * @returns {any}
+     */
+    currentChange(page) {
+      this.queryParams.pageNum = page;
+      this.getList();
+    },
+    /**
+     * 获取列表
+     * @date 2022-08-11
+     * @returns {any}
+     */
+    getList() {
+      this.loading = true;
+      listlDetail(this.queryParams).then((res) => {
+        this.deliverList = res.rows;
+        this.total = Number(res.total);
+        this.loading = false;
+      });
+    },
+    /**
+     * 点击视频查看详情
+     * @date 2022-08-29
+     * @param {any} item
+     * @returns {any}
+     */
+    skillClick(item) {
+      this.$router.push({
+        path: "/educationpromote/video",
+        query: {
+          id: item.id,
+        },
+      });
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+._container {
+  width: 70%;
+  min-width: 600px;
+  margin-right: auto;
+  margin-left: auto;
+  padding-right: 15px;
+  padding-left: 15px;
+  max-width: none !important;
+}
+._container:after,
+._container:before {
+  display: table;
+  content: " ";
+  clear: both;
+}
+.breadcrumb {
+  background-color: #f5f7fa;
+  height: 70px;
+  display: flex;
+  align-items: center;
+}
+.banner-breadcrumb-breadcrumb {
+  .el-breadcrumb {
+    font-size: 18px;
+  }
+  :deep(.el-breadcrumb__inner.is-link) {
+    color: #7e7e7e;
+    font-weight: normal;
+  }
+  :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner) {
+    color: #ff0000;
+  }
+}
+.box-list {
+  background-color: #fff;
+  padding: 10px 0 80px 0;
+  display: table;
+  width: 100%;
+  h1 {
+    color: #222222;
+    font-size: 26px;
+    margin: 19px 20px;
+  }
+  .deliver:hover {
+    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.11);
+  }
+  .deliver {
+    cursor: pointer;
+    width: 532px;
+    height: 93px;
+    background: #ffffff;
+    border: 1px solid rgba(0, 0, 0, 0.11);
+    transition: 0.5s;
+    border-radius: 3px;
+    margin: 10px;
+    display: flex;
+    align-items: center;
+    justify-content: space-between;
+    padding: 0 20px;
+    float: left;
+    .log {
+      width: 60px;
+      height: 60px;
+      background: #ffffff;
+      border: 1px solid #e2e2e2;
+      border-radius: 4px;
+      overflow: hidden;
+      img {
+        width: 100%;
+        height: 100%;
+      }
+    }
+    .center {
+      width: 340px;
+      h3 {
+        color: #1a1a1a;
+        margin-bottom: 10px;
+        font-size: 20px;
+        font-family: "SourceHanSansCN";
+      }
+      p {
+        color: #666666;
+        font-size: 14px;
+        line-height: 20px;
+        .meta_cell {
+          display: inline-block;
+          margin-right: 5px;
+        }
+        .meta_cell:after {
+          padding: 0 1px 0 4px;
+          display: inline-block;
+          color: #919090;
+          content: "|";
+        }
+        .meta_cell:last-child:after {
+          content: "";
+        }
+      }
+    }
+    .right-box {
+      display: flex;
+      flex-direction: column;
+      justify-content: right;
+      span {
+        text-align: right;
+      }
+      .pir {
+        color: #ef651f;
+        font-size: 20px;
+      }
+      .time {
+        color: #999999;
+        font-size: 14px;
+      }
+      .postStatus {
+        line-height: 40px;
+        color: #0f0f0f;
+      }
+    }
+  }
+}
+.pagination {
+  text-align: center;
+  margin-top: 20px;
+  :deep(.el-pager .active) {
+    background-color: #ff3939;
+  }
+  :deep(.el-pagination.is-background .el-pager li:not(.disabled).active) {
+    background-color: #ff3939;
+  }
+}
+.news-box {
+  width: 275px;
+  margin: 0 6px;
+  // height: 162px;
+  // overflow: hidden;
+  position: relative;
+  display: inline-block;
+  p {
+    list-style: 30px;
+  }
+  .news-box {
+    font-size: 20px;
+    color: #2e2e2e;
+  }
+  .state {
+    font-size: 14px;
+    color: #818181;
+  }
+}
+.news-box img {
+  cursor: pointer;
+  width: 100%;
+  height: 162px;
+}
+.news-box img::after {
+  width: 70px;
+  height: 70px;
+  background-image: url("@/assets/images/shipin.png");
+  background-size: 70px 70px;
+  position: absolute;
+  top: 25%;
+  left: 35%;
+}
+</style>

+ 7 - 3
src/views/SkillTraining/SkillPackage/SelectedCourses/SelectedCoursesIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-26 10:48:52
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-29 09:35:59
+ * @LastEditTime: 2022-08-29 14:19:07
  * @FilePath: \veterans_client_web\src\views\SkillTraining\SkillPackage\SelectedCourses\SelectedCoursesIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -28,7 +28,10 @@
       <div class="_container">
         <div class="box-list">
           <h1>精选课程</h1>
-          <div style="display: table; width: 100%; padding: 20px">
+          <div
+            style="display: table; width: 100%; padding: 20px"
+            v-if="deliverList.length"
+          >
             <div
               class="news-box"
               v-for="(item, index) in deliverList"
@@ -41,7 +44,8 @@
               <!-- <p class="state">线上课程</p> -->
             </div>
           </div>
-          <div class="pagination" v-if="total">
+          <el-empty description="课程数据为空" v-else></el-empty>
+          <div class="pagination" v-if="total && deliverList.length">
             <el-pagination
               background
               layout="prev, pager, next"

+ 2 - 2
src/views/SkillTraining/SkillPackage/SkillPackageIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-26 10:41:50
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-29 14:02:15
+ * @LastEditTime: 2022-08-29 14:44:17
  * @FilePath: \veterans_client_web\src\views\SkillTraining\SkillPackage\SkillPackageIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -132,7 +132,7 @@ export default {
     },
     more() {
       this.$router.push({
-        name: "SelectedCoursesIndex",
+        path: "/skilltraining/selectedcourses",
         query: { id: this.newsId },
       });
     },

+ 5 - 2
src/views/SkillTraining/SkillTrainingIndex.vue

@@ -3,7 +3,7 @@
  * @Author: 空白格
  * @Date: 2022-08-11 17:53:41
  * @LastEditors: 空白格
- * @LastEditTime: 2022-08-26 17:25:03
+ * @LastEditTime: 2022-08-29 14:13:24
  * @FilePath: \veterans_client_web\src\views\SkillTraining\SkillTrainingIndex.vue
  * @Copyright: Copyright (c) 2016~2022 by 空白格, All Rights Reserved.
 -->
@@ -31,7 +31,10 @@
               <div
                 class="stcp-list-item"
                 @click="
-                  jumpPage('/skilltraining/skillpackage', { id: item.id })
+                  jumpPage('/skilltraining/skillpackage', {
+                    id: item.id,
+                    schoolName: item.schoolName,
+                  })
                 "
               >
                 <div class="stcp-list-item-image">