调整流程预览

This commit is contained in:
songgaoshuai 2023-06-14 18:47:33 +08:00
parent 469ab92e1b
commit b5e8454aeb

View File

@ -39,7 +39,8 @@ export default {
loading:false, loading:false,
src:"", src:"",
visible:false, visible:false,
historyList:[] historyList:[],
graphicInfoVos:[]
}; };
}, },
methods: { methods: {
@ -48,7 +49,8 @@ export default {
this.loading = true this.loading = true
this.src = getHistoryProcessImage(processInstanceId) this.src = getHistoryProcessImage(processInstanceId)
getHistoryRecord(processInstanceId).then(response => { getHistoryRecord(processInstanceId).then(response => {
this.historyList = response.data this.historyList = response.data.historyRecordList
this.graphicInfoVos = response.data.graphicInfoVos
this.loading = false this.loading = false
}) })
} }