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 cdfc9ef60..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 @@
@@ -21,10 +21,8 @@
-
-
-
-
+
+
{
+ 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
}
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
index 268043c77..6037352ca 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
@@ -50,7 +50,7 @@
style="position: relative;"
>
-
+
{{CornerMarker}}
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/workflow.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/workflow.js
index d53429cf3..0b6531b31 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/workflow.js
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/nworkflow/workflow.js
@@ -265,15 +265,15 @@ export default {
// 不是表格的情况
const path = item.__valuePath__
const val = get(formValue, path)
-
+ var guid = undefined
if (item.type == 'upload') {
// 先生成一个guid
- var guid = this.newguid();
+ guid = this.newguid();
// 取出当前列对应的labelId
var labeId = item.id
// 从缓存取出当前审批流程所有的guid
var guids = JSON.parse(uni.getStorageSync('guids'))
- if (guids&&JSON.stringify(guids)!=='{}') {
+ if (guids&&JSON.stringify(guids)!=='{}'&&guids[labeId]) {
guid = guids[labeId]
}
}