|
@ -171,14 +171,25 @@ export default { |
|
|
|
|
|
|
|
|
rows.forEach(item =>{ |
|
|
rows.forEach(item =>{ |
|
|
this.timeLine2List.push({ |
|
|
this.timeLine2List.push({ |
|
|
time: moment(item.operationTime || new Date()).format( |
|
|
id: item.processId, |
|
|
|
|
|
time: item.operationTime |
|
|
|
|
|
? new Date(item.operationTime).toLocaleString() |
|
|
|
|
|
: null, |
|
|
|
|
|
name: item.operatorName, |
|
|
|
|
|
desc: item.context, |
|
|
|
|
|
source: item.source, |
|
|
|
|
|
processId: item.processId, |
|
|
|
|
|
processName: item.processName, |
|
|
|
|
|
type: item.type, |
|
|
|
|
|
processType: item.processType, |
|
|
|
|
|
/*time: moment(item.operationTime || new Date()).format( |
|
|
"yyyy-MM-DD HH:mm:ss" |
|
|
"yyyy-MM-DD HH:mm:ss" |
|
|
), |
|
|
), |
|
|
name: item.operatorName, |
|
|
name: item.operatorName, |
|
|
desc: item.context, |
|
|
desc: item.context, |
|
|
source: item.source, |
|
|
source: item.source, |
|
|
posts: "", |
|
|
posts: "", |
|
|
direction: item.source == 1 ? "right" : "left", |
|
|
direction: item.source == 1 ? "right" : "left",*/ |
|
|
}); |
|
|
}); |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
@ -275,7 +286,7 @@ export default { |
|
|
.catch((err) => { |
|
|
.catch((err) => { |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// 2024-05-18 修改为二次确认,增加误报类型和误报原因 |
|
|
// 2024-05-18 修改为二次确认,增加误报类型和误报原因 |
|
|
// if (this.formData.id) { |
|
|
// if (this.formData.id) { |
|
|
// this.$confirm("确定误报吗?", "提示", { |
|
|
// this.$confirm("确定误报吗?", "提示", { |
|
|