diff --git a/src/views/work/process/leave/detail.vue b/src/views/work/process/leave/detail.vue index 19fd29d..e5c27b1 100644 --- a/src/views/work/process/leave/detail.vue +++ b/src/views/work/process/leave/detail.vue @@ -85,7 +85,7 @@ init() { this.processInstanceId = this.$route.params.processInstanceId; this.businessId = this.$route.params.businessId; - this.src = `/api/blade-flow/process/diagram-view?processInstanceId=${this.$route.params.processInstanceId}`; + this.src = `/api/blade-flow/process/diagram-view?processInstanceId=${this.$route.params.processInstanceId}&t=${new Date().getTime()}`; historyFlowList(this.processInstanceId).then(res => { const data = res.data; if (data.success) { diff --git a/src/views/work/process/leave/handle.vue b/src/views/work/process/leave/handle.vue index 7e88f95..9e4b241 100644 --- a/src/views/work/process/leave/handle.vue +++ b/src/views/work/process/leave/handle.vue @@ -104,7 +104,7 @@ this.taskId = this.$route.params.taskId; this.processInstanceId = this.$route.params.processInstanceId; this.businessId = this.$route.params.businessId; - this.src = `/api/blade-flow/process/diagram-view?processInstanceId=${this.$route.params.processInstanceId}`; + this.src = `/api/blade-flow/process/diagram-view?processInstanceId=${this.$route.params.processInstanceId}&t=${new Date().getTime()}`; historyFlowList(this.processInstanceId).then(res => { const data = res.data; if (data.success) {