diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LR_OAModule/noticeExamine.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LR_OAModule/noticeExamine.vue index 3508205d4..43b398353 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LR_OAModule/noticeExamine.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LR_OAModule/noticeExamine.vue @@ -13,7 +13,7 @@ @@ -61,7 +61,8 @@ export default { content: '', time: '', - date: '' + date: '', + fileList:[], } }, @@ -94,9 +95,13 @@ export default { }, // 获取表单数据 getFormData(ProgressId){ - return this.HTTP_GET("learun/news/shList",{ProgressId},"加载数据时出错").then(res=>{ + return this.HTTP_GET("learun/news/shList",{ProgressId},"加载数据时出错").then(async res=>{ if(res){ this.formData = res + let fileList = await this.getFileListById(res.F_NewsImage) + if(fileList&&fileList.length){ + this.fileList = [fileList[0]] + } this.content = res.F_NewsContent this.ready = true }