|
|
@ -326,6 +326,11 @@ export default { |
|
|
|
,historicDetail, |
|
|
|
,historicDetail, |
|
|
|
JSelectUserByDep |
|
|
|
JSelectUserByDep |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
props:{ |
|
|
|
|
|
|
|
LCid:{ |
|
|
|
|
|
|
|
type : String, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
data () { |
|
|
|
data () { |
|
|
|
return { |
|
|
|
return { |
|
|
|
userLoading: false, |
|
|
|
userLoading: false, |
|
|
@ -468,6 +473,7 @@ export default { |
|
|
|
getFirstNode:'/actProcessIns/getFirstNode', |
|
|
|
getFirstNode:'/actProcessIns/getFirstNode', |
|
|
|
applyBusiness:'/actBusiness/apply', |
|
|
|
applyBusiness:'/actBusiness/apply', |
|
|
|
cancelApply:'/actBusiness/cancel', |
|
|
|
cancelApply:'/actBusiness/cancel', |
|
|
|
|
|
|
|
getBackList: '/actTask/getBackList/', |
|
|
|
pass: '/actTask/pass', |
|
|
|
pass: '/actTask/pass', |
|
|
|
back: '/actTask/back', |
|
|
|
back: '/actTask/back', |
|
|
|
backToTask: '/actTask/backToTask', |
|
|
|
backToTask: '/actTask/backToTask', |
|
|
@ -516,9 +522,48 @@ export default { |
|
|
|
created(){ |
|
|
|
created(){ |
|
|
|
// this.searchReset(); |
|
|
|
// this.searchReset(); |
|
|
|
// 重新加载数据 |
|
|
|
// 重新加载数据 |
|
|
|
this.getDataList(); |
|
|
|
// this.getDataList(); |
|
|
|
|
|
|
|
// this.getDataList(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
watch:{ |
|
|
|
|
|
|
|
// LCid: { |
|
|
|
|
|
|
|
// immediate: true, |
|
|
|
|
|
|
|
// handler() { |
|
|
|
|
|
|
|
// console.log("didiidiidid",this.LCid); |
|
|
|
|
|
|
|
// if(!!this.LCid ){ |
|
|
|
|
|
|
|
// this.queryParam.id = this.LCid; |
|
|
|
|
|
|
|
// this.loadData(1); |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// }, |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
|
|
|
|
loadData(arg) { |
|
|
|
|
|
|
|
if(!this.url.list){ |
|
|
|
|
|
|
|
this.$message.error("请设置url.list属性!") |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
//加载数据 若传入参数1则加载第一页的内容 |
|
|
|
|
|
|
|
if (arg === 1) { |
|
|
|
|
|
|
|
this.ipagination.current = 1; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
var params = this.getQueryParams();//查询条件 |
|
|
|
|
|
|
|
this.loading = true; |
|
|
|
|
|
|
|
getAction(this.url.list, params).then((res) => { |
|
|
|
|
|
|
|
if (res.success) { |
|
|
|
|
|
|
|
this.dataSource = res.result.records||res.result; |
|
|
|
|
|
|
|
if(res.result.total) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
this.ipagination.total = res.result.total; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if(res.code===510){ |
|
|
|
|
|
|
|
this.$message.warning(res.message) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
changeBackTask(v) { |
|
|
|
changeBackTask(v) { |
|
|
|
if (v == '-1') { |
|
|
|
if (v == '-1') { |
|
|
|
return |
|
|
|
return |
|
|
@ -581,7 +626,7 @@ export default { |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.form.comment=null; |
|
|
|
this.form.comment=null; |
|
|
|
this.getDataList() |
|
|
|
this.loadData(1); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
console.log(res) |
|
|
|
console.log(res) |
|
|
|
this.$message.error(res.message); |
|
|
|
this.$message.error(res.message); |
|
|
@ -600,7 +645,7 @@ export default { |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.form.comment=null; |
|
|
|
this.form.comment=null; |
|
|
|
this.getDataList() |
|
|
|
this.loadData(1); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
} else { |
|
|
|
} else { |
|
|
@ -619,7 +664,7 @@ export default { |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.form.comment=null; |
|
|
|
this.form.comment=null; |
|
|
|
this.getDataList() |
|
|
|
this.loadData(1); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
@ -638,7 +683,7 @@ export default { |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.$message.success('操作成功') |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.modalTaskVisible = false; |
|
|
|
this.form.comment=null; |
|
|
|
this.form.comment=null; |
|
|
|
this.getDataList() |
|
|
|
this.loadData(1); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
@ -651,7 +696,6 @@ export default { |
|
|
|
this.lcModa.disabled = false |
|
|
|
this.lcModa.disabled = false |
|
|
|
}, |
|
|
|
}, |
|
|
|
passTask(v) { |
|
|
|
passTask(v) { |
|
|
|
// console.log(v.procInstId, '33333333333333333') |
|
|
|
|
|
|
|
this.lcModa.isBuyerName = false; |
|
|
|
this.lcModa.isBuyerName = false; |
|
|
|
this.lcModa.lead = false; |
|
|
|
this.lcModa.lead = false; |
|
|
|
this.modalTaskTitle = '审批通过' |
|
|
|
this.modalTaskTitle = '审批通过' |
|
|
@ -900,8 +944,19 @@ export default { |
|
|
|
this.form.id = v.id; |
|
|
|
this.form.id = v.id; |
|
|
|
this.form.procDefId = v.procDefId; |
|
|
|
this.form.procDefId = v.procDefId; |
|
|
|
this.form.title = v.title; |
|
|
|
this.form.title = v.title; |
|
|
|
|
|
|
|
let userInfo = sessionStorage.getItem('USER_INFORMATION'); |
|
|
|
|
|
|
|
let res = JSON.parse(userInfo); |
|
|
|
|
|
|
|
// console.log(res,"12222222222222"); |
|
|
|
|
|
|
|
let pa = { |
|
|
|
|
|
|
|
procDefId:v.procDefId, |
|
|
|
|
|
|
|
tableId:v.tableId, |
|
|
|
|
|
|
|
tableName:v.tableName |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if(!!res.departIds && res.userIdentity ===1 && !!res.userIdentity ){ |
|
|
|
|
|
|
|
pa.departId = res.departIds; |
|
|
|
|
|
|
|
} |
|
|
|
// 加载审批人 |
|
|
|
// 加载审批人 |
|
|
|
this.getAction(this.url.getFirstNode,{procDefId:v.procDefId,tableId:v.tableId,tableName:v.tableName}).then(res => { |
|
|
|
this.getAction(this.url.getFirstNode,pa).then(res => { |
|
|
|
if (res.success) { |
|
|
|
if (res.success) { |
|
|
|
if (res.result.type == 3 || res.result.type == 4) { |
|
|
|
if (res.result.type == 3 || res.result.type == 4) { |
|
|
|
this.isGateway = true; |
|
|
|
this.isGateway = true; |
|
|
|