|
@@ -84,8 +84,9 @@ export default {
|
|
|
let datas = data.data.warnMap.warnData.records
|
|
|
datas.forEach((data)=>{
|
|
|
let msg = data.feedback ? data.feedback : " 响应超时 ";
|
|
|
- let content = "["+ data.resourceName +"] "+ data.procedureName +"("+data.instructionName+")" + msg;
|
|
|
- this.$notification.error(content, { infiniteTimer: false, timer:60, title:"异常警报", showCloseIcn:true });
|
|
|
+ let content = "<a href='#/developer/warnLong'>"+(data.resourceName? "["+ data.resourceName +"] " : "" )+(data.procedureName? data.procedureName : "")
|
|
|
+ + (data.instructionName? "("+data.instructionName+")" : "") + msg+"</a>";
|
|
|
+ this.$notification.error(content, { messageIsHTML: true, timer:60, title:"异常警报", showCloseIcn:true });
|
|
|
})
|
|
|
});
|
|
|
}
|