|
@@ -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)
|