|
|
@ -237,25 +237,26 @@ export default { |
|
|
|
var one = window.location.href.indexOf('&data') + 6 |
|
|
|
const data = window.location.href.substr(one) // url解码unescape()已从web中移除,尽量不使用 |
|
|
|
const obj = JSON.parse(decodeURIComponent(data)) |
|
|
|
console.log('获取到的obj',obj) |
|
|
|
// 同意列表 |
|
|
|
this.agreeList.businessSid = obj.businessSid |
|
|
|
this.agreeList.instanceId = obj.instanceId |
|
|
|
this.agreeList.taskId = obj.taskId |
|
|
|
this.agreeList.taskDefKey = obj.taskDefKey |
|
|
|
this.agreeList.userSid = window.sessionStorage.getItem('userSid') |
|
|
|
this.agreeList.orgSidPath = window.sessionStorage.getItem('orgSidPath') |
|
|
|
this.agreeList.userSid = obj.userSid // window.sessionStorage.getItem('userSid') |
|
|
|
this.agreeList.orgSidPath = obj.orgSidPath // window.sessionStorage.getItem('orgSidPath') |
|
|
|
this.current.taskDefKey = obj.taskDefKey |
|
|
|
this.current.taskName = obj.taskName |
|
|
|
// 驳回列表 |
|
|
|
this.regectList.businessSid = obj.businessSid |
|
|
|
this.regectList.instanceId = obj.instanceId |
|
|
|
this.regectList.taskId = obj.taskId |
|
|
|
this.regectList.userSid = window.sessionStorage.getItem('userSid') |
|
|
|
this.regectList.userSid = obj.userSid // window.sessionStorage.getItem('userSid') |
|
|
|
// 终止列表 |
|
|
|
this.stopList.businessSid = obj.businessSid |
|
|
|
this.stopList.instanceId = obj.instanceId |
|
|
|
this.stopList.taskId = obj.taskId |
|
|
|
this.stopList.userSid = window.sessionStorage.getItem('userSid') |
|
|
|
this.stopList.userSid = obj.userSid // window.sessionStorage.getItem('userSid') |
|
|
|
// 办理状态 |
|
|
|
this.transactState = obj.transactState |
|
|
|
// 加载流程图相关的数据 |
|
|
|