Browse Source

添加默认轮播图

zhangbiao 3 years ago
parent
commit
ec472a8059
2 changed files with 6 additions and 1 deletions
  1. BIN
      src/assets/image/swipe/00.jpg
  2. 6 1
      src/views/home/learn/page-learn-recommend.vue

BIN
src/assets/image/swipe/00.jpg


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

@@ -86,8 +86,13 @@ export default {
       this.$_http
         .get(this.$_API.JTXT_GET_CAROUSELS, { params })
         .then(res => {
-          console.log("----res--" + JSON.stringify(res));
+          // console.log("----res--" + JSON.stringify(res));
           this.swiperList = res.data;
+          if (this.swiperList === null || this.swiperList.length === 0) {
+            this.swiperList = [
+              { imageUrl: require("@/assets/image/swipe/00.jpg") }
+            ];
+          }
         })
         .catch(() => {
           this.$store.commit("toggleLoading", false);