Browse Source

修改轮播图

aaa 3 years ago
parent
commit
9139155dbd

+ 3 - 1
src/api/modules/learn.js

@@ -19,6 +19,8 @@ export default {
     // 阅读文章
     JTXT_POST_MATERIALS_READ: "materials/{materialId}/read",
     // 阅读文章
-    JTXT_GET_NEWSFEED: "newsfeed"
+    JTXT_GET_NEWSFEED: "newsfeed",
+    // 获取轮播图
+    JTXT_GET_CAROUSELS: "carousels"
   }
 };

+ 1 - 1
src/views/home/answer/through/through-question-start.vue

@@ -40,7 +40,7 @@ export default {
     return {
       throughRule: {
         name: "闯关规则",
-        content: "每关10道题,一共5关,答对继续,答错出局"
+        content: "每关5道题,一共5关,答对继续,答错出局"
       }
     };
   },

+ 1 - 1
src/views/home/exam/page-exam.vue

@@ -191,7 +191,7 @@ export default {
             };
           }
         } else {
-          if (this.exam.available) {
+          if (exam.available) {
             return {
               status: this.examStatesType.STARTED,
               statusTxt: "已开考"

+ 23 - 1
src/views/home/learn/page-learn-recommend.vue

@@ -13,8 +13,9 @@
               width="100%"
               height="100%"
               fit="cover"
-              :src="item.url"
+              :src="item.imageUrl"
               :show-error="true"
+              @click="clickCarousels(item)"
             />
           </van-swipe-item>
         </van-swipe>
@@ -81,9 +82,30 @@ export default {
   },
   created() {
     this.getNewsfeed();
+    this.getCarousels();
   },
   mounted() {},
   methods: {
+    // 查询轮播图
+    getCarousels() {
+      let params = { num: 4 };
+      this.$_http
+        .get(this.$_API.JTXT_GET_CAROUSELS, { params })
+        .then(res => {
+          console.log("----res--" + JSON.stringify(res));
+          this.swiperList = res.data;
+        })
+        .catch(() => {
+          this.$store.commit("toggleLoading", false);
+        });
+    },
+    clickCarousels(item) {
+      if (!item.materialId) return;
+      this.$router.push({
+        name: "learn-content",
+        params: { materialId: item.materialId }
+      });
+    },
     // 查询子目录
     getNewsfeed() {
       let engineertypeid = "";

+ 0 - 2
src/views/home/person/page-person.vue

@@ -31,11 +31,9 @@
           <van-popover
             v-model="isShowPopup"
             trigger="click"
-            theme="dark"
             placement="bottom-end"
             :actions="engineeringWorkList"
             @select="handleSelecte"
-            class="personEngineeringWork"
           >
             <template #reference>
               {{ engineeringWorkChooseValue }}