【修改】修改流程中心

This commit is contained in:
zhoulingpo
2023-05-11 16:20:16 +08:00
parent c726c7af47
commit 62120b8640
5 changed files with 18 additions and 9 deletions
+7 -4
View File
@@ -141,7 +141,8 @@ export default {
pageNo: 1
},
submitjson:{},
prcType:1
prcType:'',
application:'' //存储转办的意见
}
},
created () {
@@ -149,7 +150,7 @@ export default {
this.prcNum=this.$store.getters.handleProcess.prcNum
this.prcId=this.$store.getters.handleProcess.prcId
this.prcName=this.$store.getters.handleProcess.prcName
this.$set(this.processForm,'prcName',this.prcName)
this.prcType=this.$store.getters.handleProcess.prcType
let params={
prcId: this.prcId,
prcType: this.prcType
@@ -191,8 +192,9 @@ export default {
})
},
// 转办
handleTransfer() {
handleTransfer(type) {
this.visibleTree = true
this.application=type
},
// 选择转办
handleDblClick(treeNode) {
@@ -205,7 +207,8 @@ export default {
taskId: this.taskId,
assignee: treeNode[0].USID,
userId: this.$store.getters.userInfo.usid,
pId: this.prcId
pId: this.prcId,
approvalOpinion:this.application
}).then(() => {
this.$message.success('转办成功')
this.$router.push({path: '/userCenter/processCenter', query: {id: this.$route.query.id}})