Browse Source

Merge branch 'master' of http://139.196.39.194:9021/chenc/cd-work-flow-web

jbb 2 years ago
parent
commit
963ce58105

+ 5 - 1
src/views/oa/modules/IncidentTicketModal.vue

@@ -473,7 +473,11 @@
           if(res.success){
             var noticeList =[]
             res.result.map(item=>{
-              noticeList.push(item.userName)
+              if(item.confirm != null && item.confirm != '' && item.confirm != '否'){
+                noticeList.push(item.userName+'('+item.confirm+')')
+              }else{
+                noticeList.push(item.userName+'')
+              }
             })
             this.formState.Noticer = noticeList.toString()
             console.log(this.formState.Noticer)

+ 6 - 1
src/views/oa/modules/IncidentTicketModalDetail.vue

@@ -602,7 +602,12 @@
           if(res.success){
             var noticeList =[]
             res.result.map(item=>{
-              noticeList.push(item.userName)
+              if(item.confirm != null && item.confirm != '' && item.confirm != '否'){
+                noticeList.push(item.userName+'('+item.confirm+')')
+              }else{
+                noticeList.push(item.userName+'')
+              }
+              
             })
             this.formState.Noticer = noticeList.toString()
             this.$forceUpdate()