diff --git a/src/views/user/Mynotes.vue b/src/views/user/Mynotes.vue index 5e5ead51..a596fee5 100644 --- a/src/views/user/Mynotes.vue +++ b/src/views/user/Mynotes.vue @@ -6,7 +6,7 @@ 导出 - Excel @@ -72,7 +72,7 @@ {{ item.content }}
@@ -167,6 +167,14 @@ + + + + + @@ -186,6 +194,8 @@ export default { }, data(){ return{ + dialogVisibleBigImage:false, // 显示图片放大框 true-显示弹框;false-隐藏弹框 + currentImagePath:'', userData:{}, formatDate, formatDateShort, @@ -254,6 +264,12 @@ export default { }); }, methods: { + // 笔记图片放大 + showBigImg(path){ + this.currentImagePath = path; + this.dialogVisibleBigImage = true; + }, + routerTo(item) { if(item.courseId) { this.$router.push('/course/studyindex?id='+item.courseId);