Browse Source

修改收藏列表跳转文章的参数

huangtao 3 years ago
parent
commit
1c9cbd0149
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/views/home/person/collection.vue

+ 2 - 4
src/views/home/person/collection.vue

@@ -19,9 +19,7 @@
             </div>
             <div class="contentItemDescription">
               收藏时间:
-              <span>{{
-                formateDatesFun(item.addedTime)
-              }}</span>
+              <span>{{ formateDatesFun(item.addedTime) }}</span>
             </div>
           </div>
         </div>
@@ -91,7 +89,7 @@ export default {
     toMaterialDetail(item) {
       this.$router.push({
         name: "learn-content",
-        params: { materialId: item.id }
+        params: { materialId: item.materialId }
       });
     }
   }