瀏覽代碼

添加默认轮播图

zhangbiao 3 年之前
父節點
當前提交
ec472a8059
共有 2 個文件被更改,包括 6 次插入1 次删除
  1. 二進制
      src/assets/image/swipe/00.jpg
  2. 6 1
      src/views/home/learn/page-learn-recommend.vue

二進制
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);