|
@@ -363,7 +363,7 @@
|
|
|
<p>部门:${task.assigneeUser.deptName}</p>
|
|
<p>部门:${task.assigneeUser.deptName}</p>
|
|
|
<p>结果:${this.getDictValue(
|
|
<p>结果:${this.getDictValue(
|
|
|
'流程实例的结果',
|
|
'流程实例的结果',
|
|
|
- task.result
|
|
|
|
|
|
|
+ task.result + ''
|
|
|
)}</p>
|
|
)}</p>
|
|
|
<p>创建时间:${task.createTime}</p>`;
|
|
<p>创建时间:${task.createTime}</p>`;
|
|
|
if (task.endTime) {
|
|
if (task.endTime) {
|
|
@@ -386,7 +386,7 @@
|
|
|
} else if (element.type === 'bpmn:EndEvent' && this.processInstance) {
|
|
} else if (element.type === 'bpmn:EndEvent' && this.processInstance) {
|
|
|
html = `<p>结果:${this.getDictValue(
|
|
html = `<p>结果:${this.getDictValue(
|
|
|
'流程实例的结果',
|
|
'流程实例的结果',
|
|
|
- this.processInstance.result.toString()
|
|
|
|
|
|
|
+ this.processInstance.result + ''
|
|
|
)}</p>`;
|
|
)}</p>`;
|
|
|
if (this.processInstance.endTime) {
|
|
if (this.processInstance.endTime) {
|
|
|
html += `<p>结束时间:${this.processInstance.endTime}</p>`;
|
|
html += `<p>结束时间:${this.processInstance.endTime}</p>`;
|