|
|
|
@ -9,7 +9,7 @@
|
|
|
|
|
<a-form layout="inline" @keyup.enter.native="handleSearch"> |
|
|
|
|
<a-row :gutter="24"> |
|
|
|
|
<a-col :md="6" :sm="8"> |
|
|
|
|
<a-form-item label="任务名称" prop="name" > |
|
|
|
|
<a-form-item label="任务名称" prop="name"> |
|
|
|
|
<a-input |
|
|
|
|
type="text" allowClear |
|
|
|
|
v-model="searchForm.name" |
|
|
|
@ -18,9 +18,10 @@
|
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
|
<a-col :md="6" :sm="12" > |
|
|
|
|
<a-button type="primary" style="left: 10px" @click="handleSearch" icon="search">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="handleReset" icon="reload" style="margin-left: 8px;left: 10px">重置</a-button> |
|
|
|
|
<a-col :md="6" :sm="12"> |
|
|
|
|
<a-button type="primary" style="left: 10px" @click="handleSearch" icon="search">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="handleReset" icon="reload" |
|
|
|
|
style="margin-left: 8px;left: 10px">重置</a-button> |
|
|
|
|
</a-col> |
|
|
|
|
</span> |
|
|
|
|
</a-row> |
|
|
|
@ -33,27 +34,27 @@
|
|
|
|
|
</a-row>--> |
|
|
|
|
<a-row> |
|
|
|
|
<a-table :scroll="scroll" bordered |
|
|
|
|
:loading="loading" rowKey="id" |
|
|
|
|
:dataSource="data" |
|
|
|
|
:pagination="ipagination" @change="handleTableChange" |
|
|
|
|
ref="table" |
|
|
|
|
:loading="loading" rowKey="id" |
|
|
|
|
:dataSource="data" |
|
|
|
|
:pagination="ipagination" @change="handleTableChange" |
|
|
|
|
ref="table" |
|
|
|
|
> |
|
|
|
|
<a-table-column title="#" :width="50"> |
|
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
|
<a-table-column title="#" :width="50"> |
|
|
|
|
<template slot-scope="t,r,i"> |
|
|
|
|
<span> {{i+1}} </span> |
|
|
|
|
</template> |
|
|
|
|
</a-table-column> |
|
|
|
|
<a-table-column title="任务名称" dataIndex="name" :width="150" align="center"> |
|
|
|
|
<a-table-column title="任务名称" dataIndex="name" :width="150" align="center"> |
|
|
|
|
<template slot-scope="t"> |
|
|
|
|
<span> {{t}} </span> |
|
|
|
|
</template> |
|
|
|
|
</a-table-column> |
|
|
|
|
<a-table-column title="所属流程" dataIndex="processName" :width="150" align="center"> |
|
|
|
|
<a-table-column title="所属流程" dataIndex="processName" :width="150" align="center"> |
|
|
|
|
<template slot-scope="t"> |
|
|
|
|
<span> {{t}} </span> |
|
|
|
|
</template> |
|
|
|
|
</a-table-column> |
|
|
|
|
<a-table-column title="委托人" dataIndex="owner" align="center" :width="150"> |
|
|
|
|
<a-table-column title="委托人" dataIndex="owner" align="center" :width="150"> |
|
|
|
|
<template slot-scope="t"> |
|
|
|
|
<span> {{t}} </span> |
|
|
|
|
</template> |
|
|
|
@ -64,7 +65,7 @@
|
|
|
|
|
</template> |
|
|
|
|
</a-table-column> |
|
|
|
|
<a-table-column title="优先级" dataIndex="priority" :width="110" align="center" |
|
|
|
|
key="so" :sorter="(a,b)=>a.priority - b.priority" |
|
|
|
|
key="so" :sorter="(a,b)=>a.priority - b.priority" |
|
|
|
|
> |
|
|
|
|
<template slot-scope="t"> |
|
|
|
|
<span v-if="t==0" style="color: green;"> 普通 </span> |
|
|
|
@ -86,15 +87,19 @@
|
|
|
|
|
<span>{{t}}</span> |
|
|
|
|
</template> |
|
|
|
|
</a-table-column> |
|
|
|
|
<a-table-column title="操作" dataIndex="" align="center"> |
|
|
|
|
<a-table-column title="操作" dataIndex="" align="center"> |
|
|
|
|
<template slot-scope="t,r,i"> |
|
|
|
|
<a href="javascript:void(0);" @click="detail(r)" style="color: blue">查看并处理</a> |
|
|
|
|
<a-divider type="vertical" /> |
|
|
|
|
<span v-if="Boolean(r.isSuspended)" style="cursor: no-drop;color: #999999;" title="流程已被挂起,无法操作!"> |
|
|
|
|
查看并处理 <a-divider type="vertical" /> |
|
|
|
|
委托他人代办 <a-divider type="vertical" /> |
|
|
|
|
<span v-if="!Boolean(r.isSuspended)"> |
|
|
|
|
<a href="javascript:void(0);" @click="detail(r)" style="color: blue">查看并处理</a> |
|
|
|
|
</span> |
|
|
|
|
|
|
|
|
|
<span v-if="Boolean(r.isSuspended)" style="color: #999999;" title="流程已被挂起,无法操作!"> |
|
|
|
|
查看并处理 |
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
委托他人代办 |
|
|
|
|
</span> |
|
|
|
|
<span v-else> |
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
<!--<a href="javascript:void(0);" @click="passTask(r)" style="color: green">通过</a> |
|
|
|
|
<a-divider type="vertical" /> |
|
|
|
|
<a href="javascript:void(0);" @click="backTask(r)" style="color: orange">驳回</a> |
|
|
|
@ -117,16 +122,17 @@
|
|
|
|
|
<!--流程表单--> |
|
|
|
|
<a-modal :title="lcModa.title" v-model="lcModa.visible" :footer="null" :maskClosable="false" width="80%"> |
|
|
|
|
<component :disabled="lcModa.disabled" v-if="lcModa.visible" :is="lcModa.formComponent" |
|
|
|
|
:processData="lcModa.processData" :isNew = "lcModa.isNew" |
|
|
|
|
:processData="lcModa.processData" :isNew="lcModa.isNew" |
|
|
|
|
:task="true" |
|
|
|
|
@passTask = "()=>passTask(lcModa.processData)" |
|
|
|
|
@backTask = "()=>backTask(lcModa.processData)" :procInstId="lcModa.procInstId" :pictureId="lcModa.pictureId" |
|
|
|
|
@passTask="()=>passTask(lcModa.processData)" |
|
|
|
|
@backTask="()=>backTask(lcModa.processData)" :procInstId="lcModa.procInstId" |
|
|
|
|
:pictureId="lcModa.pictureId" |
|
|
|
|
@close="lcModa.visible=false,lcModa.disabled = false"></component> |
|
|
|
|
</a-modal> |
|
|
|
|
<!-- 审批操作 --> |
|
|
|
|
<a-modal :title="modalTaskTitle" v-model="modalTaskVisible" :mask-closable="false" width="60%" height="100%"> |
|
|
|
|
|
|
|
|
|
<div v-if="modalTaskVisible"> |
|
|
|
|
<div v-if="modalTaskVisible"> |
|
|
|
|
<a-form ref="form" :model="form" :label-width="85" :rules="formValidate"> |
|
|
|
|
<a-form-item label="审批意见" prop="reason"> |
|
|
|
|
<j-editor v-model="form.comment"></j-editor> |
|
|
|
@ -140,7 +146,8 @@
|
|
|
|
|
mode="multiple" |
|
|
|
|
:loading="userLoading" |
|
|
|
|
> |
|
|
|
|
<a-select-option v-for="(item, i) in assigneeList" :key="i" :value="item.username">{{item.realname}}</a-select-option> |
|
|
|
|
<a-select-option v-for="(item, i) in assigneeList" :key="i" :value="item.username">{{item.realname}} |
|
|
|
|
</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="下一审批人" v-show="isGateway"> |
|
|
|
@ -153,7 +160,8 @@
|
|
|
|
|
:loading="backLoading" |
|
|
|
|
@change="changeBackTask" |
|
|
|
|
> |
|
|
|
|
<a-select-option v-for="(item, i) in backList" :key="i" :value="item.key">{{item.name}}</a-select-option> |
|
|
|
|
<a-select-option v-for="(item, i) in backList" :key="i" :value="item.key">{{item.name}} |
|
|
|
|
</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="指定原节点审批人" prop="assignees" v-show="form.backTaskKey!=-1" :error="error"> |
|
|
|
@ -164,7 +172,8 @@
|
|
|
|
|
mode="multiple" |
|
|
|
|
:loading="userLoading" |
|
|
|
|
> |
|
|
|
|
<a-select-option v-for="(item, i) in assigneeList" :key="i" :value="item.username">{{item.realname}}</a-select-option> |
|
|
|
|
<a-select-option v-for="(item, i) in assigneeList" :key="i" :value="item.username">{{item.realname}} |
|
|
|
|
</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
</a-form-item> |
|
|
|
|
</div> |
|
|
|
@ -173,8 +182,8 @@
|
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="消息通知"> |
|
|
|
|
<a-checkbox v-model="form.sendMessage">站内消息通知</a-checkbox> |
|
|
|
|
<!-- <a-checkbox v-model="form.sendSms" disabled>短信通知</a-checkbox> |
|
|
|
|
<a-checkbox v-model="form.sendEmail" disabled>邮件通知</a-checkbox>--> |
|
|
|
|
<!-- <a-checkbox v-model="form.sendSms" disabled>短信通知</a-checkbox> |
|
|
|
|
<a-checkbox v-model="form.sendEmail" disabled>邮件通知</a-checkbox>--> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-form> |
|
|
|
|
</div> |
|
|
|
@ -187,405 +196,407 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import { activitiMixin } from '@/views/activiti/mixins/activitiMixin' |
|
|
|
|
import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep' |
|
|
|
|
export default { |
|
|
|
|
name: "todoManage", |
|
|
|
|
mixins:[activitiMixin,JeecgListMixin], |
|
|
|
|
components:{JSelectUserByDep}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
openSearch: true, |
|
|
|
|
openTip: true, |
|
|
|
|
loading: true, // 表单加载状态 |
|
|
|
|
modalTaskVisible: false, |
|
|
|
|
userLoading: false, |
|
|
|
|
backLoading: false, |
|
|
|
|
selectCount: 0, // 多选计数 |
|
|
|
|
selectList: [], // 多选数据 |
|
|
|
|
assigneeList: [], |
|
|
|
|
backList: [ |
|
|
|
|
{ |
|
|
|
|
key: "-1", |
|
|
|
|
name: "发起人" |
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import { activitiMixin } from '@/views/activiti/mixins/activitiMixin' |
|
|
|
|
import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'todoManage', |
|
|
|
|
mixins: [activitiMixin, JeecgListMixin], |
|
|
|
|
components: { JSelectUserByDep }, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
openSearch: true, |
|
|
|
|
openTip: true, |
|
|
|
|
loading: true, // 表单加载状态 |
|
|
|
|
modalTaskVisible: false, |
|
|
|
|
userLoading: false, |
|
|
|
|
backLoading: false, |
|
|
|
|
selectCount: 0, // 多选计数 |
|
|
|
|
selectList: [], // 多选数据 |
|
|
|
|
assigneeList: [], |
|
|
|
|
backList: [ |
|
|
|
|
{ |
|
|
|
|
key: '-1', |
|
|
|
|
name: '发起人' |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
error: '', |
|
|
|
|
showAssign: false, |
|
|
|
|
searchForm: { |
|
|
|
|
// 搜索框对应data对象 |
|
|
|
|
name: '', |
|
|
|
|
Id: '' |
|
|
|
|
}, |
|
|
|
|
modalTaskTitle: '', |
|
|
|
|
modalTitle: '', // 添加或编辑标题 |
|
|
|
|
form: { |
|
|
|
|
id: '', |
|
|
|
|
userId: '', |
|
|
|
|
procInstId: '', |
|
|
|
|
comment: '', |
|
|
|
|
type: 0, |
|
|
|
|
assignees: [], |
|
|
|
|
backTaskKey: '-1', |
|
|
|
|
sendMessage: true, |
|
|
|
|
sendSms: false, |
|
|
|
|
sendEmail: false |
|
|
|
|
}, |
|
|
|
|
formValidate: { |
|
|
|
|
// 表单验证规则 |
|
|
|
|
}, |
|
|
|
|
submitLoading: false, // 添加或编辑提交状态 |
|
|
|
|
data: [], // 表单数据 |
|
|
|
|
total: 0, // 表单数据总数 |
|
|
|
|
dictPriority: [], |
|
|
|
|
isGateway: false, |
|
|
|
|
lcModa: { |
|
|
|
|
title: '', |
|
|
|
|
disabled: false, |
|
|
|
|
visible: false, |
|
|
|
|
formComponent: null, |
|
|
|
|
isNew: false |
|
|
|
|
}, |
|
|
|
|
url: { |
|
|
|
|
todoList: '/actTask/todoList', |
|
|
|
|
pass: '/actTask/pass', |
|
|
|
|
back: '/actTask/back', |
|
|
|
|
backToTask: '/actTask/backToTask', |
|
|
|
|
delegate: '/actTask/delegate', |
|
|
|
|
getNextNode: '/activiti_process/getNextNode', |
|
|
|
|
getNode: '/activiti_process/getNode/', |
|
|
|
|
getBackList: '/actTask/getBackList/', |
|
|
|
|
passAll: '/actTask/passAll/', |
|
|
|
|
backAll: '/actTask/backAll/' |
|
|
|
|
}, |
|
|
|
|
/*历史*/ |
|
|
|
|
modalLsVisible: false, |
|
|
|
|
procInstId: '' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
console.log(this.searchForm) |
|
|
|
|
console.log(this.$route.params.id) |
|
|
|
|
if (this.$route.params.Id !== null) { |
|
|
|
|
this.searchForm.Id = this.$route.params.id |
|
|
|
|
} |
|
|
|
|
this.init() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
init() { |
|
|
|
|
this.getDataList() |
|
|
|
|
}, |
|
|
|
|
loadData() { |
|
|
|
|
}, |
|
|
|
|
getDataList() { |
|
|
|
|
this.loading = true |
|
|
|
|
console.log('this.searchForm') |
|
|
|
|
console.log(this.searchForm) |
|
|
|
|
this.getAction(this.url.todoList, this.searchForm).then(res => { |
|
|
|
|
this.loading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
console.log(res) |
|
|
|
|
this.data = res.result || [] |
|
|
|
|
this.total = this.data.leading |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
handleTableChange(pagination, filters, sorter) { |
|
|
|
|
//分页、排序、筛选变化时触发 |
|
|
|
|
if (Object.keys(sorter).length > 0) { |
|
|
|
|
this.isorter.column = sorter.field |
|
|
|
|
this.isorter.order = 'ascend' == sorter.order ? 'asc' : 'desc' |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
error: "", |
|
|
|
|
showAssign: false, |
|
|
|
|
searchForm: { |
|
|
|
|
// 搜索框对应data对象 |
|
|
|
|
name: "", |
|
|
|
|
Id: "", |
|
|
|
|
this.ipagination = pagination |
|
|
|
|
// this.loadData(); |
|
|
|
|
}, |
|
|
|
|
modalTaskTitle: "", |
|
|
|
|
modalTitle: "", // 添加或编辑标题 |
|
|
|
|
form: { |
|
|
|
|
id: "", |
|
|
|
|
userId: "", |
|
|
|
|
procInstId: "", |
|
|
|
|
comment: "", |
|
|
|
|
type: 0, |
|
|
|
|
assignees: [], |
|
|
|
|
backTaskKey: "-1", |
|
|
|
|
sendMessage: true, |
|
|
|
|
sendSms: false, |
|
|
|
|
sendEmail: false |
|
|
|
|
handleSearch() { |
|
|
|
|
this.getDataList() |
|
|
|
|
}, |
|
|
|
|
formValidate: { |
|
|
|
|
// 表单验证规则 |
|
|
|
|
handleReset() { |
|
|
|
|
this.searchForm = {} |
|
|
|
|
// 重新加载数据 |
|
|
|
|
this.getDataList() |
|
|
|
|
}, |
|
|
|
|
submitLoading: false, // 添加或编辑提交状态 |
|
|
|
|
data: [], // 表单数据 |
|
|
|
|
total: 0, // 表单数据总数 |
|
|
|
|
dictPriority: [], |
|
|
|
|
isGateway: false, |
|
|
|
|
lcModa: { |
|
|
|
|
title:'', |
|
|
|
|
disabled:false, |
|
|
|
|
visible:false, |
|
|
|
|
formComponent : null, |
|
|
|
|
isNew : false |
|
|
|
|
showSelect(e) { |
|
|
|
|
this.selectList = e |
|
|
|
|
this.selectCount = e.length |
|
|
|
|
}, |
|
|
|
|
url:{ |
|
|
|
|
todoList:'/actTask/todoList', |
|
|
|
|
pass:'/actTask/pass', |
|
|
|
|
back:'/actTask/back', |
|
|
|
|
backToTask:'/actTask/backToTask', |
|
|
|
|
delegate:'/actTask/delegate', |
|
|
|
|
getNextNode:'/activiti_process/getNextNode', |
|
|
|
|
getNode:'/activiti_process/getNode/', |
|
|
|
|
getBackList:'/actTask/getBackList/', |
|
|
|
|
passAll:'/actTask/passAll/', |
|
|
|
|
backAll:'/actTask/backAll/', |
|
|
|
|
clearSelectAll() { |
|
|
|
|
this.$refs.table.selectAll(false) |
|
|
|
|
}, |
|
|
|
|
/*历史*/ |
|
|
|
|
modalLsVisible: false, |
|
|
|
|
procInstId:'' |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
console.log(this.searchForm) |
|
|
|
|
console.log(this.$route.params.id) |
|
|
|
|
if (this.$route.params.Id !== null) { |
|
|
|
|
this.searchForm.Id=this.$route.params.id |
|
|
|
|
} |
|
|
|
|
this.init(); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
init() { |
|
|
|
|
this.getDataList(); |
|
|
|
|
}, |
|
|
|
|
loadData(){}, |
|
|
|
|
getDataList() { |
|
|
|
|
this.loading = true; |
|
|
|
|
console.log("this.searchForm") |
|
|
|
|
console.log(this.searchForm) |
|
|
|
|
this.getAction(this.url.todoList,this.searchForm).then(res => { |
|
|
|
|
this.loading = false; |
|
|
|
|
if (res.success) { |
|
|
|
|
console.log(res) |
|
|
|
|
this.data = res.result||[]; |
|
|
|
|
this.total = this.data.leading; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleTableChange(pagination, filters, sorter) { |
|
|
|
|
//分页、排序、筛选变化时触发 |
|
|
|
|
if (Object.keys(sorter).length > 0) { |
|
|
|
|
this.isorter.column = sorter.field; |
|
|
|
|
this.isorter.order = "ascend" == sorter.order ? "asc" : "desc" |
|
|
|
|
} |
|
|
|
|
this.ipagination = pagination; |
|
|
|
|
// this.loadData(); |
|
|
|
|
}, |
|
|
|
|
handleSearch() { |
|
|
|
|
this.getDataList(); |
|
|
|
|
}, |
|
|
|
|
handleReset() { |
|
|
|
|
this.searchForm={}; |
|
|
|
|
// 重新加载数据 |
|
|
|
|
this.getDataList(); |
|
|
|
|
}, |
|
|
|
|
showSelect(e) { |
|
|
|
|
this.selectList = e; |
|
|
|
|
this.selectCount = e.length; |
|
|
|
|
}, |
|
|
|
|
clearSelectAll() { |
|
|
|
|
this.$refs.table.selectAll(false); |
|
|
|
|
}, |
|
|
|
|
/*审批提交的方法*/ |
|
|
|
|
handelSubmit() { |
|
|
|
|
console.log("提交") |
|
|
|
|
this.submitLoading = true; |
|
|
|
|
var formData = Object.assign({},this.form); |
|
|
|
|
formData.assignees = formData.assignees.join(","); |
|
|
|
|
if (formData.type == 0) { |
|
|
|
|
// 通过 |
|
|
|
|
if (this.showAssign && formData.assignees.length < 1) { |
|
|
|
|
this.$message.error("请至少选择一个审批人") |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
|
this.error = ""; |
|
|
|
|
} |
|
|
|
|
this.postFormAction(this.url.pass,formData).then(res => { |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
if (res.success) { |
|
|
|
|
this.lcModa.visible=false |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.modalTaskVisible = false; |
|
|
|
|
this.getDataList(); |
|
|
|
|
/*审批提交的方法*/ |
|
|
|
|
handelSubmit() { |
|
|
|
|
console.log('提交') |
|
|
|
|
this.submitLoading = true |
|
|
|
|
var formData = Object.assign({}, this.form) |
|
|
|
|
formData.assignees = formData.assignees.join(',') |
|
|
|
|
if (formData.type == 0) { |
|
|
|
|
// 通过 |
|
|
|
|
if (this.showAssign && formData.assignees.length < 1) { |
|
|
|
|
this.$message.error('请至少选择一个审批人') |
|
|
|
|
this.submitLoading = false |
|
|
|
|
return |
|
|
|
|
} else { |
|
|
|
|
this.error = '' |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else if (formData.type == 1) { |
|
|
|
|
// 驳回 |
|
|
|
|
if (formData.backTaskKey == "-1") { |
|
|
|
|
// 驳回至发起人 |
|
|
|
|
this.postFormAction(this.url.back,formData).then(res => { |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
this.postFormAction(this.url.pass, formData).then(res => { |
|
|
|
|
this.submitLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
this.lcModa.visible=false |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.modalTaskVisible = false; |
|
|
|
|
this.getDataList(); |
|
|
|
|
this.lcModa.visible = false |
|
|
|
|
this.$message.success('操作成功') |
|
|
|
|
this.modalTaskVisible = false |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
// 自定义驳回 |
|
|
|
|
if (formData.backTaskKey != "-1" && formData.assignees.length < 1) { |
|
|
|
|
this.$message.error("请至少选择一个审批人") |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
return; |
|
|
|
|
}) |
|
|
|
|
} else if (formData.type == 1) { |
|
|
|
|
// 驳回 |
|
|
|
|
if (formData.backTaskKey == '-1') { |
|
|
|
|
// 驳回至发起人 |
|
|
|
|
this.postFormAction(this.url.back, formData).then(res => { |
|
|
|
|
this.submitLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
this.lcModa.visible = false |
|
|
|
|
this.$message.success('操作成功') |
|
|
|
|
this.modalTaskVisible = false |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
// 自定义驳回 |
|
|
|
|
if (formData.backTaskKey != '-1' && formData.assignees.length < 1) { |
|
|
|
|
this.$message.error('请至少选择一个审批人') |
|
|
|
|
this.submitLoading = false |
|
|
|
|
return |
|
|
|
|
} else { |
|
|
|
|
this.error = '' |
|
|
|
|
} |
|
|
|
|
this.postFormAction(this.url.backToTask, formData).then(res => { |
|
|
|
|
this.submitLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
this.lcModa.visible = false |
|
|
|
|
this.$message.success('操作成功') |
|
|
|
|
this.modalTaskVisible = false |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} else if (formData.type == 2) { |
|
|
|
|
// 委托 |
|
|
|
|
if (!formData.userId) { |
|
|
|
|
this.$message.error('请选择一委托人') |
|
|
|
|
this.submitLoading = false |
|
|
|
|
return |
|
|
|
|
} else { |
|
|
|
|
this.error = ""; |
|
|
|
|
this.error = '' |
|
|
|
|
} |
|
|
|
|
this.postFormAction(this.url.backToTask,formData).then(res => { |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
this.postFormAction(this.url.delegate, formData).then(res => { |
|
|
|
|
this.submitLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
this.lcModa.visible=false |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.modalTaskVisible = false; |
|
|
|
|
this.getDataList(); |
|
|
|
|
this.$message.success('操作成功') |
|
|
|
|
this.modalTaskVisible = false |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} else if (formData.type == 2) { |
|
|
|
|
// 委托 |
|
|
|
|
if (!formData.userId) { |
|
|
|
|
this.$message.error("请选择一委托人") |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
|
this.error = ""; |
|
|
|
|
}, |
|
|
|
|
detail(r) { |
|
|
|
|
if (!r.routeName) { |
|
|
|
|
this.$message.warning( |
|
|
|
|
'该流程信息未配置表单,请联系开发人员!' |
|
|
|
|
) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.lcModa.disabled = true |
|
|
|
|
//获取是不是第一个审核人 |
|
|
|
|
if (r.processName === '物资调拨流程') { |
|
|
|
|
let userInfo = sessionStorage.getItem('USER_INFORMATION') |
|
|
|
|
let res = JSON.parse(userInfo) |
|
|
|
|
console.log('userInfo>>>>>>>>>>>', res.username) |
|
|
|
|
let param = {} |
|
|
|
|
param.id = r.procDefId |
|
|
|
|
param.tableName = r.tableName |
|
|
|
|
param.tableId = r.tableId |
|
|
|
|
param.username = res.username |
|
|
|
|
this.getAction('/hy/processMaterialsAllot/getOne', param).then(res => { |
|
|
|
|
console.log('res>>>>>>>>>>>>>>>>>>', res) |
|
|
|
|
if (res.success) { |
|
|
|
|
if (res.result) { |
|
|
|
|
this.lcModa.disabled = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
this.postFormAction(this.url.delegate,formData).then(res => { |
|
|
|
|
this.submitLoading = false; |
|
|
|
|
this.lcModa.title = '查看流程业务信息:' + r.processName |
|
|
|
|
this.lcModa.formComponent = this.getFormComponent(r.routeName).component |
|
|
|
|
this.lcModa.processData = r |
|
|
|
|
this.lcModa.isNew = false |
|
|
|
|
this.lcModa.task = true |
|
|
|
|
this.lcModa.procInstId = r.procInstId |
|
|
|
|
this.lcModa.visible = true |
|
|
|
|
}, |
|
|
|
|
passTask(v) { |
|
|
|
|
this.modalTaskTitle = '审批通过' |
|
|
|
|
this.form.id = v.id |
|
|
|
|
this.form.procInstId = v.procInstId |
|
|
|
|
this.form.priority = v.priority |
|
|
|
|
this.form.type = 0 |
|
|
|
|
this.modalTaskVisible = true |
|
|
|
|
this.userLoading = true |
|
|
|
|
this.getAction(this.url.getNextNode, { procDefId: v.procDefId, currActId: v.key }).then(res => { |
|
|
|
|
this.userLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.modalTaskVisible = false; |
|
|
|
|
this.getDataList(); |
|
|
|
|
if (res.result.type == 4) { |
|
|
|
|
this.isGateway = true |
|
|
|
|
this.showAssign = false |
|
|
|
|
this.error = '' |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.isGateway = false |
|
|
|
|
if (res.result.users && res.result.users.length > 0) { |
|
|
|
|
this.error = '' |
|
|
|
|
this.assigneeList = res.result.users |
|
|
|
|
console.log(this.assigneeList) |
|
|
|
|
// 默认勾选 |
|
|
|
|
let ids = [] |
|
|
|
|
res.result.users.forEach(e => { |
|
|
|
|
ids.push(e.username) |
|
|
|
|
}) |
|
|
|
|
this.form.assignees = ids |
|
|
|
|
this.showAssign = true |
|
|
|
|
} else { |
|
|
|
|
this.form.assignees = [] |
|
|
|
|
this.showAssign = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
detail(r) { |
|
|
|
|
if (!r.routeName) { |
|
|
|
|
this.$message.warning( |
|
|
|
|
"该流程信息未配置表单,请联系开发人员!" |
|
|
|
|
); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.lcModa.disabled = true; |
|
|
|
|
//获取是不是第一个审核人 |
|
|
|
|
if (r.processName ==='物资调拨流程'){ |
|
|
|
|
let userInfo=sessionStorage.getItem("USER_INFORMATION"); |
|
|
|
|
let res=JSON.parse(userInfo); |
|
|
|
|
console.log("userInfo>>>>>>>>>>>",res.username) |
|
|
|
|
let param={} |
|
|
|
|
param.id=r.procDefId; |
|
|
|
|
param.tableName=r.tableName; |
|
|
|
|
param.tableId=r.tableId; |
|
|
|
|
param.username =res.username |
|
|
|
|
this.getAction("/hy/processMaterialsAllot/getOne",param).then(res => { |
|
|
|
|
console.log("res>>>>>>>>>>>>>>>>>>",res) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
changeBackTask(v) { |
|
|
|
|
if (v == '-1') { |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.userLoading = true |
|
|
|
|
this.getAction(this.url.getNode + v).then(res => { |
|
|
|
|
this.userLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
if (res.result){ |
|
|
|
|
this.lcModa.disabled = false; |
|
|
|
|
if (res.result.users && res.result.users.length > 0) { |
|
|
|
|
this.assigneeList = res.result.users |
|
|
|
|
// 默认勾选 |
|
|
|
|
let ids = [] |
|
|
|
|
res.result.users.forEach(e => { |
|
|
|
|
ids.push(e.username) |
|
|
|
|
}) |
|
|
|
|
this.form.assignees = ids |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
this.lcModa.title = '查看流程业务信息:'+r.processName; |
|
|
|
|
this.lcModa.formComponent = this.getFormComponent(r.routeName).component; |
|
|
|
|
this.lcModa.processData = r; |
|
|
|
|
this.lcModa.isNew = false; |
|
|
|
|
this.lcModa.task=true; |
|
|
|
|
this.lcModa.procInstId=r.procInstId; |
|
|
|
|
this.lcModa.visible = true; |
|
|
|
|
}, |
|
|
|
|
passTask(v) { |
|
|
|
|
this.modalTaskTitle = "审批通过"; |
|
|
|
|
this.form.id = v.id; |
|
|
|
|
this.form.procInstId = v.procInstId; |
|
|
|
|
this.form.priority = v.priority; |
|
|
|
|
this.form.type = 0; |
|
|
|
|
this.modalTaskVisible = true; |
|
|
|
|
this.userLoading = true; |
|
|
|
|
this.getAction(this.url.getNextNode,{procDefId:v.procDefId, currActId:v.key}).then(res => { |
|
|
|
|
this.userLoading = false; |
|
|
|
|
if (res.success) { |
|
|
|
|
if (res.result.type == 4) { |
|
|
|
|
this.isGateway = true; |
|
|
|
|
this.showAssign = false; |
|
|
|
|
this.error = ""; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.isGateway = false; |
|
|
|
|
if (res.result.users && res.result.users.length > 0) { |
|
|
|
|
this.error = ""; |
|
|
|
|
this.assigneeList = res.result.users; |
|
|
|
|
console.log(this.assigneeList) |
|
|
|
|
// 默认勾选 |
|
|
|
|
let ids = []; |
|
|
|
|
res.result.users.forEach(e => { |
|
|
|
|
ids.push(e.username); |
|
|
|
|
}); |
|
|
|
|
this.form.assignees = ids; |
|
|
|
|
this.showAssign = true; |
|
|
|
|
} else { |
|
|
|
|
this.form.assignees = []; |
|
|
|
|
this.showAssign = false; |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
backTask(v) { |
|
|
|
|
this.modalTaskTitle = '审批驳回' |
|
|
|
|
this.form.id = v.id |
|
|
|
|
this.form.procInstId = v.procInstId |
|
|
|
|
this.form.procDefId = v.procDefId |
|
|
|
|
this.form.priority = v.priority |
|
|
|
|
this.form.type = 1 |
|
|
|
|
this.showAssign = false |
|
|
|
|
this.modalTaskVisible = true |
|
|
|
|
// 获取可驳回节点 |
|
|
|
|
this.backList = [ |
|
|
|
|
{ |
|
|
|
|
key: '-1', |
|
|
|
|
name: '发起人' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
changeBackTask(v) { |
|
|
|
|
if (v == "-1") { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.userLoading = true; |
|
|
|
|
this.getAction(this.url.getNode+v).then(res => { |
|
|
|
|
this.userLoading = false; |
|
|
|
|
if (res.success) { |
|
|
|
|
if (res.result.users && res.result.users.length > 0) { |
|
|
|
|
this.assigneeList = res.result.users; |
|
|
|
|
// 默认勾选 |
|
|
|
|
let ids = []; |
|
|
|
|
res.result.users.forEach(e => { |
|
|
|
|
ids.push(e.username); |
|
|
|
|
}); |
|
|
|
|
this.form.assignees = ids; |
|
|
|
|
] |
|
|
|
|
this.form.backTaskKey = '-1' |
|
|
|
|
this.backLoading = true |
|
|
|
|
this.getAction(this.url.getBackList + v.procInstId).then(res => { |
|
|
|
|
this.backLoading = false |
|
|
|
|
if (res.success) { |
|
|
|
|
res.result.forEach(e => { |
|
|
|
|
this.backList.push(e) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
delegateTask(v) { |
|
|
|
|
this.modalTaskTitle = '委托他人代办' |
|
|
|
|
this.form.id = v.id |
|
|
|
|
this.form.procInstId = v.procInstId |
|
|
|
|
this.form.type = 2 |
|
|
|
|
this.showAssign = false |
|
|
|
|
this.modalTaskVisible = true |
|
|
|
|
}, |
|
|
|
|
history(v) { |
|
|
|
|
if (!v.procInstId) { |
|
|
|
|
this.$message.error('流程实例ID不存在') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
backTask(v) { |
|
|
|
|
this.modalTaskTitle = "审批驳回"; |
|
|
|
|
this.form.id = v.id; |
|
|
|
|
this.form.procInstId = v.procInstId; |
|
|
|
|
this.form.procDefId = v.procDefId; |
|
|
|
|
this.form.priority = v.priority; |
|
|
|
|
this.form.type = 1; |
|
|
|
|
this.showAssign = false; |
|
|
|
|
this.modalTaskVisible = true; |
|
|
|
|
// 获取可驳回节点 |
|
|
|
|
this.backList = [ |
|
|
|
|
{ |
|
|
|
|
key: "-1", |
|
|
|
|
name: "发起人" |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
this.form.backTaskKey = "-1"; |
|
|
|
|
this.backLoading = true; |
|
|
|
|
this.getAction(this.url.getBackList+v.procInstId).then(res => { |
|
|
|
|
this.backLoading = false; |
|
|
|
|
if (res.success) { |
|
|
|
|
res.result.forEach(e => { |
|
|
|
|
this.backList.push(e); |
|
|
|
|
}); |
|
|
|
|
this.procInstId = v.procInstId |
|
|
|
|
this.modalLsVisible = true |
|
|
|
|
}, |
|
|
|
|
passAll() { |
|
|
|
|
if (this.selectCount <= 0) { |
|
|
|
|
this.$message.warning('您还未选择要通过的数据') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
delegateTask(v) { |
|
|
|
|
this.modalTaskTitle = "委托他人代办"; |
|
|
|
|
this.form.id = v.id; |
|
|
|
|
this.form.procInstId = v.procInstId; |
|
|
|
|
this.form.type = 2; |
|
|
|
|
this.showAssign = false; |
|
|
|
|
this.modalTaskVisible = true; |
|
|
|
|
}, |
|
|
|
|
history(v) { |
|
|
|
|
if (!v.procInstId) { |
|
|
|
|
this.$message.error("流程实例ID不存在"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.procInstId = v.procInstId; |
|
|
|
|
this.modalLsVisible = true; |
|
|
|
|
}, |
|
|
|
|
passAll() { |
|
|
|
|
if (this.selectCount <= 0) { |
|
|
|
|
this.$message.warning("您还未选择要通过的数据"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// 批量通过 |
|
|
|
|
this.modalVisible = true; |
|
|
|
|
this.$confirm({ |
|
|
|
|
title: "确认通过", |
|
|
|
|
content: |
|
|
|
|
"您确认要通过所选的 " + |
|
|
|
|
this.selectCount + |
|
|
|
|
" 条数据? 注意:将默认分配给节点设定的所有可审批用户", |
|
|
|
|
loading: true, |
|
|
|
|
onOk: () => { |
|
|
|
|
let ids = ""; |
|
|
|
|
this.selectList.forEach(function(e) { |
|
|
|
|
ids += e.id + ","; |
|
|
|
|
}); |
|
|
|
|
ids = ids.substring(0, ids.length - 1); |
|
|
|
|
this.postFormAction(this.url.passAll,{ids:ids}).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.modalVisible = false; |
|
|
|
|
this.clearSelectAll(); |
|
|
|
|
this.getDataList(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// 批量通过 |
|
|
|
|
this.modalVisible = true |
|
|
|
|
this.$confirm({ |
|
|
|
|
title: '确认通过', |
|
|
|
|
content: |
|
|
|
|
'您确认要通过所选的 ' + |
|
|
|
|
this.selectCount + |
|
|
|
|
' 条数据? 注意:将默认分配给节点设定的所有可审批用户', |
|
|
|
|
loading: true, |
|
|
|
|
onOk: () => { |
|
|
|
|
let ids = '' |
|
|
|
|
this.selectList.forEach(function(e) { |
|
|
|
|
ids += e.id + ',' |
|
|
|
|
}) |
|
|
|
|
ids = ids.substring(0, ids.length - 1) |
|
|
|
|
this.postFormAction(this.url.passAll, { ids: ids }).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success('操作成功') |
|
|
|
|
this.modalVisible = false |
|
|
|
|
this.clearSelectAll() |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
backAll() { |
|
|
|
|
if (this.selectCount <= 0) { |
|
|
|
|
this.$message.warning('您还未选择要驳回的数据') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
backAll() { |
|
|
|
|
if (this.selectCount <= 0) { |
|
|
|
|
this.$message.warning("您还未选择要驳回的数据"); |
|
|
|
|
return; |
|
|
|
|
// 批量驳回 |
|
|
|
|
this.modalVisible = true |
|
|
|
|
this.$confirm({ |
|
|
|
|
title: '确认驳回', |
|
|
|
|
content: |
|
|
|
|
'您确认要驳回所选的 ' + |
|
|
|
|
this.selectCount + |
|
|
|
|
' 条数据? 注意:所有流程将驳回至发起人', |
|
|
|
|
loading: true, |
|
|
|
|
onOk: () => { |
|
|
|
|
let procInstIds = '' |
|
|
|
|
this.selectList.forEach(function(e) { |
|
|
|
|
procInstIds += e.procInstId + ',' |
|
|
|
|
}) |
|
|
|
|
procInstIds = procInstIds.substring(0, procInstIds.length - 1) |
|
|
|
|
this.postFormAction(this.url.backAll, { procInstIds: procInstIds }).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success('操作成功') |
|
|
|
|
this.modalVisible = false |
|
|
|
|
this.clearSelectAll() |
|
|
|
|
this.getDataList() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
// 批量驳回 |
|
|
|
|
this.modalVisible = true; |
|
|
|
|
this.$confirm({ |
|
|
|
|
title: "确认驳回", |
|
|
|
|
content: |
|
|
|
|
"您确认要驳回所选的 " + |
|
|
|
|
this.selectCount + |
|
|
|
|
" 条数据? 注意:所有流程将驳回至发起人", |
|
|
|
|
loading: true, |
|
|
|
|
onOk: () => { |
|
|
|
|
let procInstIds = ""; |
|
|
|
|
this.selectList.forEach(function(e) { |
|
|
|
|
procInstIds += e.procInstId + ","; |
|
|
|
|
}); |
|
|
|
|
procInstIds = procInstIds.substring(0, procInstIds.length - 1); |
|
|
|
|
this.postFormAction(this.url.backAll,{procInstIds:procInstIds}).then(res => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.$message.success("操作成功"); |
|
|
|
|
this.modalVisible = false; |
|
|
|
|
this.clearSelectAll(); |
|
|
|
|
this.getDataList(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
</script> |