477 lines
14 KiB
Vue
477 lines
14 KiB
Vue
|
<template>
|
|||
|
<div class="app-container">
|
|||
|
<el-tabs tab-position="top" :value="processed === true ? 'approval' : 'form'">
|
|||
|
|
|||
|
|
|||
|
<el-tab-pane label="表单信息" name="form">
|
|||
|
<div v-if="formOpen">
|
|||
|
<el-card class="box-card" shadow="never" v-for="(formInfo, index) in processFormList" :key="index">
|
|||
|
<div slot="header" class="clearfix">
|
|||
|
<!-- <span>{{ formInfo.title }}</span>-->
|
|||
|
<span> 计划详情 </span>
|
|||
|
</div>
|
|||
|
|
|||
|
<!--流程处理表单模块-->
|
|||
|
<el-col :span="20" :offset="2">
|
|||
|
<parser :form-conf="formInfo"/>
|
|||
|
</el-col>
|
|||
|
</el-card>
|
|||
|
</div>
|
|||
|
</el-tab-pane >
|
|||
|
|
|||
|
</el-tabs>
|
|||
|
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import { detailProcess } from '@/api/workflow/process'
|
|||
|
import Parser from '@/utils/generator/parser'
|
|||
|
import { complete, delegate, transfer, rejectTask, returnList, returnTask } from '@/api/workflow/task'
|
|||
|
import { selectUser, deptTreeSelect } from '@/api/system/user'
|
|||
|
import ProcessViewer from '@/components/ProcessViewer'
|
|||
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
|||
|
import Treeselect from '@riophae/vue-treeselect'
|
|||
|
|
|||
|
export default {
|
|||
|
name: "WorkDetail",
|
|||
|
components: {
|
|||
|
ProcessViewer,
|
|||
|
Parser,
|
|||
|
Treeselect
|
|||
|
},
|
|||
|
props: {},
|
|||
|
computed: {
|
|||
|
commentType() {
|
|||
|
return val => {
|
|||
|
switch (val) {
|
|||
|
case '1': return '通过'
|
|||
|
case '2': return '退回'
|
|||
|
case '3': return '驳回'
|
|||
|
case '4': return '委派'
|
|||
|
case '5': return '转办'
|
|||
|
case '6': return '终止'
|
|||
|
case '7': return '撤回'
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
approveTypeTag() {
|
|||
|
return val => {
|
|||
|
switch (val) {
|
|||
|
case '1': return 'success'
|
|||
|
case '2': return 'warning'
|
|||
|
case '3': return 'danger'
|
|||
|
case '4': return 'primary'
|
|||
|
case '5': return 'success'
|
|||
|
case '6': return 'danger'
|
|||
|
case '7': return 'info'
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
data() {
|
|||
|
return {
|
|||
|
height: document.documentElement.clientHeight - 205 + 'px;',
|
|||
|
// 模型xml数据
|
|||
|
loadIndex: 0,
|
|||
|
xmlData: undefined,
|
|||
|
finishedInfo: {
|
|||
|
finishedSequenceFlowSet: [],
|
|||
|
finishedTaskSet: [],
|
|||
|
unfinishedTaskSet: [],
|
|||
|
rejectedTaskSet: []
|
|||
|
},
|
|||
|
historyProcNodeList: [],
|
|||
|
// 部门名称
|
|||
|
deptName: undefined,
|
|||
|
// 部门树选项
|
|||
|
deptOptions: undefined,
|
|||
|
userLoading: false,
|
|||
|
// 用户表格数据
|
|||
|
userList: null,
|
|||
|
deptProps: {
|
|||
|
children: "children",
|
|||
|
label: "label"
|
|||
|
},
|
|||
|
// 查询参数
|
|||
|
queryParams: {
|
|||
|
pageNum: 1,
|
|||
|
pageSize: 10,
|
|||
|
deptId: undefined
|
|||
|
},
|
|||
|
total: 0,
|
|||
|
// 遮罩层
|
|||
|
loading: true,
|
|||
|
taskForm:{
|
|||
|
comment:"", // 意见内容
|
|||
|
procInsId: "", // 流程实例编号
|
|||
|
taskId: "" ,// 流程任务编号
|
|||
|
copyUserIds: "", // 抄送人Id
|
|||
|
vars: "",
|
|||
|
targetKey:""
|
|||
|
},
|
|||
|
rules: {
|
|||
|
comment: [{ required: true, message: '请输入审批意见', trigger: 'blur' }],
|
|||
|
},
|
|||
|
currentUserId: null,
|
|||
|
variables: [], // 流程变量数据
|
|||
|
taskFormOpen: false,
|
|||
|
taskFormData: {}, // 流程变量数据
|
|||
|
processFormList: [], // 流程变量数据
|
|||
|
formOpen: false, // 是否加载流程变量数据
|
|||
|
returnTaskList: [], // 回退列表数据
|
|||
|
processed: false,
|
|||
|
returnTitle: null,
|
|||
|
returnOpen: false,
|
|||
|
rejectOpen: false,
|
|||
|
rejectTitle: null,
|
|||
|
userData: {
|
|||
|
title: '',
|
|||
|
type: '',
|
|||
|
open: false,
|
|||
|
},
|
|||
|
copyUser: [],
|
|||
|
nextUser: [],
|
|||
|
userMultipleSelection: [],
|
|||
|
userDialogTitle: '',
|
|||
|
userOpen: false
|
|||
|
};
|
|||
|
},
|
|||
|
created() {
|
|||
|
this.initData();
|
|||
|
},
|
|||
|
methods: {
|
|||
|
initData() {
|
|||
|
this.taskForm.procInsId = this.$route.params && this.$route.params.planProcId;
|
|||
|
this.taskForm.taskId = this.$route.query && this.$route.query.taskId;
|
|||
|
this.processed = this.$route.query && eval(this.$route.query.processed || false);
|
|||
|
|
|||
|
// 流程任务重获取变量表单
|
|||
|
this.getProcessDetails(this.taskForm.procInsId, this.taskForm.taskId);
|
|||
|
this.loadIndex = this.taskForm.procInsId;
|
|||
|
},
|
|||
|
/** 查询部门下拉树结构 */
|
|||
|
getTreeSelect() {
|
|||
|
deptTreeSelect().then(response => {
|
|||
|
this.deptOptions = response.data;
|
|||
|
});
|
|||
|
},
|
|||
|
/** 查询用户列表 */
|
|||
|
getList() {
|
|||
|
this.userLoading = true;
|
|||
|
selectUser(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|||
|
this.userList = response.rows;
|
|||
|
this.total = response.total;
|
|||
|
this.toggleSelection(this.userMultipleSelection);
|
|||
|
this.userLoading = false;
|
|||
|
});
|
|||
|
},
|
|||
|
// 筛选节点
|
|||
|
filterNode(value, data) {
|
|||
|
if (!value) return true;
|
|||
|
return data.label.indexOf(value) !== -1;
|
|||
|
},
|
|||
|
// 节点单击事件
|
|||
|
handleNodeClick(data) {
|
|||
|
this.queryParams.deptId = data.id;
|
|||
|
this.getList();
|
|||
|
},
|
|||
|
setIcon(val) {
|
|||
|
if (val) {
|
|||
|
return "el-icon-check";
|
|||
|
} else {
|
|||
|
return "el-icon-time";
|
|||
|
}
|
|||
|
},
|
|||
|
setColor(val) {
|
|||
|
if (val) {
|
|||
|
return "#2bc418";
|
|||
|
} else {
|
|||
|
return "#b3bdbb";
|
|||
|
}
|
|||
|
},
|
|||
|
// 多选框选中数据
|
|||
|
handleSelectionChange(selection) {
|
|||
|
this.userMultipleSelection = selection
|
|||
|
},
|
|||
|
toggleSelection(selection) {
|
|||
|
if (selection && selection.length > 0) {
|
|||
|
this.$nextTick(()=> {
|
|||
|
selection.forEach(item => {
|
|||
|
let row = this.userList.find(k => k.userId === item.userId);
|
|||
|
this.$refs.userTable.toggleRowSelection(row);
|
|||
|
})
|
|||
|
})
|
|||
|
} else {
|
|||
|
this.$nextTick(() => {
|
|||
|
this.$refs.userTable.clearSelection();
|
|||
|
});
|
|||
|
}
|
|||
|
},
|
|||
|
// 关闭标签
|
|||
|
handleClose(type, tag) {
|
|||
|
let userObj = this.userMultipleSelection.find(item => item.userId === tag.id);
|
|||
|
this.userMultipleSelection.splice(this.userMultipleSelection.indexOf(userObj), 1);
|
|||
|
if (type === 'copy') {
|
|||
|
this.copyUser = this.userMultipleSelection;
|
|||
|
// 设置抄送人ID
|
|||
|
if (this.copyUser && this.copyUser.length > 0) {
|
|||
|
const val = this.copyUser.map(item => item.id);
|
|||
|
this.taskForm.copyUserIds = val instanceof Array ? val.join(',') : val;
|
|||
|
} else {
|
|||
|
this.taskForm.copyUserIds = '';
|
|||
|
}
|
|||
|
} else if (type === 'next') {
|
|||
|
this.nextUser = this.userMultipleSelection;
|
|||
|
// 设置抄送人ID
|
|||
|
if (this.nextUser && this.nextUser.length > 0) {
|
|||
|
const val = this.nextUser.map(item => item.id);
|
|||
|
this.taskForm.nextUserIds = val instanceof Array ? val.join(',') : val;
|
|||
|
} else {
|
|||
|
this.taskForm.nextUserIds = '';
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
/** 流程变量赋值 */
|
|||
|
handleCheckChange(val) {
|
|||
|
if (val instanceof Array) {
|
|||
|
this.taskForm.values = {
|
|||
|
"approval": val.join(',')
|
|||
|
}
|
|||
|
} else {
|
|||
|
this.taskForm.values = {
|
|||
|
"approval": val
|
|||
|
}
|
|||
|
}
|
|||
|
},
|
|||
|
getProcessDetails(procInsId, taskId) {
|
|||
|
const params = {procInsId: procInsId, taskId: taskId}
|
|||
|
detailProcess(params).then(res => {
|
|||
|
const data = res.data;
|
|||
|
this.xmlData = data.bpmnXml;
|
|||
|
this.processFormList = data.processFormList;
|
|||
|
this.taskFormOpen = data.existTaskForm;
|
|||
|
if (this.taskFormOpen) {
|
|||
|
this.taskFormData = data.taskFormData;
|
|||
|
}
|
|||
|
this.historyProcNodeList = data.historyProcNodeList;
|
|||
|
this.finishedInfo = data.flowViewer;
|
|||
|
this.formOpen = true;
|
|||
|
})
|
|||
|
},
|
|||
|
onSelectCopyUsers() {
|
|||
|
this.userMultipleSelection = this.copyUser;
|
|||
|
this.onSelectUsers('添加抄送人', 'copy')
|
|||
|
},
|
|||
|
onSelectNextUsers() {
|
|||
|
this.userMultipleSelection = this.nextUser;
|
|||
|
this.onSelectUsers('指定审批人', 'next')
|
|||
|
},
|
|||
|
onSelectUsers(title, type) {
|
|||
|
this.userData.title = title;
|
|||
|
this.userData.type = type;
|
|||
|
this.getTreeSelect();
|
|||
|
this.getList()
|
|||
|
this.userData.open = true;
|
|||
|
},
|
|||
|
/** 通过任务 */
|
|||
|
handleComplete() {
|
|||
|
// 校验表单
|
|||
|
const taskFormRef = this.$refs.taskFormParser;
|
|||
|
const isExistTaskForm = taskFormRef !== undefined;
|
|||
|
// 若无任务表单,则 taskFormPromise 为 true,即不需要校验
|
|||
|
const taskFormPromise = !isExistTaskForm ? true : new Promise((resolve, reject) => {
|
|||
|
taskFormRef.$refs[taskFormRef.formConfCopy.formRef].validate(valid => {
|
|||
|
valid ? resolve() : reject()
|
|||
|
})
|
|||
|
});
|
|||
|
const approvalPromise = new Promise((resolve, reject) => {
|
|||
|
this.$refs['taskForm'].validate(valid => {
|
|||
|
valid ? resolve() : reject()
|
|||
|
})
|
|||
|
});
|
|||
|
Promise.all([taskFormPromise, approvalPromise]).then(() => {
|
|||
|
if (isExistTaskForm) {
|
|||
|
this.taskForm.variables = taskFormRef[taskFormRef.formConfCopy.formModel]
|
|||
|
}
|
|||
|
complete(this.taskForm).then(response => {
|
|||
|
this.$modal.msgSuccess(response.msg);
|
|||
|
this.goBack();
|
|||
|
});
|
|||
|
})
|
|||
|
},
|
|||
|
/** 委派任务 */
|
|||
|
handleDelegate() {
|
|||
|
this.$refs["taskForm"].validate(valid => {
|
|||
|
if (valid) {
|
|||
|
this.userData.type = 'delegate';
|
|||
|
this.userData.title = '委派任务'
|
|||
|
this.userData.open = true;
|
|||
|
this.getTreeSelect();
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
/** 转办任务 */
|
|||
|
handleTransfer(){
|
|||
|
this.$refs["taskForm"].validate(valid => {
|
|||
|
if (valid) {
|
|||
|
this.userData.type = 'transfer';
|
|||
|
this.userData.title = '转办任务';
|
|||
|
this.userData.open = true;
|
|||
|
this.getTreeSelect();
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
/** 拒绝任务 */
|
|||
|
handleReject() {
|
|||
|
this.$refs["taskForm"].validate(valid => {
|
|||
|
if (valid) {
|
|||
|
const _this = this;
|
|||
|
this.$modal.confirm('拒绝审批单流程会终止,是否继续?').then(function() {
|
|||
|
return rejectTask(_this.taskForm);
|
|||
|
}).then(res => {
|
|||
|
this.$modal.msgSuccess(res.msg);
|
|||
|
this.goBack();
|
|||
|
});
|
|||
|
}
|
|||
|
});
|
|||
|
},
|
|||
|
changeCurrentUser(val) {
|
|||
|
this.currentUserId = val.userId
|
|||
|
},
|
|||
|
/** 返回页面 */
|
|||
|
goBack() {
|
|||
|
// 关闭当前标签页并返回上个页面
|
|||
|
this.$tab.closePage(this.$route)
|
|||
|
this.$router.back()
|
|||
|
},
|
|||
|
/** 接收子组件传的值 */
|
|||
|
getData(data) {
|
|||
|
if (data) {
|
|||
|
const variables = [];
|
|||
|
data.fields.forEach(item => {
|
|||
|
let variableData = {};
|
|||
|
variableData.label = item.__config__.label
|
|||
|
// 表单值为多个选项时
|
|||
|
if (item.__config__.defaultValue instanceof Array) {
|
|||
|
const array = [];
|
|||
|
item.__config__.defaultValue.forEach(val => {
|
|||
|
array.push(val)
|
|||
|
})
|
|||
|
variableData.val = array;
|
|||
|
} else {
|
|||
|
variableData.val = item.__config__.defaultValue
|
|||
|
}
|
|||
|
variables.push(variableData)
|
|||
|
})
|
|||
|
this.variables = variables;
|
|||
|
}
|
|||
|
},
|
|||
|
submitUserData() {
|
|||
|
let type = this.userData.type;
|
|||
|
if (type === 'copy' || type === 'next') {
|
|||
|
if (!this.userMultipleSelection || this.userMultipleSelection.length <= 0) {
|
|||
|
this.$modal.msgError("请选择用户");
|
|||
|
return false;
|
|||
|
}
|
|||
|
let userIds = this.userMultipleSelection.map(k => k.userId);
|
|||
|
if (type === 'copy') {
|
|||
|
// 设置抄送人ID信息
|
|||
|
this.copyUser = this.userMultipleSelection;
|
|||
|
this.taskForm.copyUserIds = userIds instanceof Array ? userIds.join(',') : userIds;
|
|||
|
} else if (type === 'next') {
|
|||
|
// 设置下一级审批人ID信息
|
|||
|
this.nextUser = this.userMultipleSelection;
|
|||
|
this.taskForm.nextUserIds = userIds instanceof Array ? userIds.join(',') : userIds;
|
|||
|
}
|
|||
|
this.userData.open = false;
|
|||
|
} else {
|
|||
|
if (!this.taskForm.comment) {
|
|||
|
this.$modal.msgError("请输入审批意见");
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (!this.currentUserId) {
|
|||
|
this.$modal.msgError("请选择用户");
|
|||
|
return false;
|
|||
|
}
|
|||
|
this.taskForm.userId = this.currentUserId;
|
|||
|
if (type === 'delegate') {
|
|||
|
delegate(this.taskForm).then(res => {
|
|||
|
this.$modal.msgSuccess(res.msg);
|
|||
|
this.goBack();
|
|||
|
});
|
|||
|
}
|
|||
|
if (type === 'transfer') {
|
|||
|
transfer(this.taskForm).then(res => {
|
|||
|
this.$modal.msgSuccess(res.msg);
|
|||
|
this.goBack();
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
},
|
|||
|
/** 可退回任务列表 */
|
|||
|
handleReturn() {
|
|||
|
this.$refs['taskForm'].validate(valid => {
|
|||
|
if (valid) {
|
|||
|
this.returnTitle = "退回流程";
|
|||
|
returnList(this.taskForm).then(res => {
|
|||
|
this.returnTaskList = res.data;
|
|||
|
this.taskForm.values = null;
|
|||
|
this.returnOpen = true;
|
|||
|
})
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
},
|
|||
|
/** 提交退回任务 */
|
|||
|
submitReturn() {
|
|||
|
this.$refs["taskForm"].validate(valid => {
|
|||
|
if (valid) {
|
|||
|
if (!this.taskForm.targetKey) {
|
|||
|
this.$modal.msgError("请选择退回节点!");
|
|||
|
}
|
|||
|
returnTask(this.taskForm).then(res => {
|
|||
|
this.$modal.msgSuccess(res.msg);
|
|||
|
this.goBack()
|
|||
|
});
|
|||
|
}
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
</script>
|
|||
|
<style lang="scss" scoped>
|
|||
|
.clearfix:before,
|
|||
|
.clearfix:after {
|
|||
|
display: table;
|
|||
|
content: "";
|
|||
|
}
|
|||
|
.clearfix:after {
|
|||
|
clear: both
|
|||
|
}
|
|||
|
|
|||
|
.box-card {
|
|||
|
width: 100%;
|
|||
|
margin-bottom: 20px;
|
|||
|
}
|
|||
|
|
|||
|
.el-tag + .el-tag {
|
|||
|
margin-left: 10px;
|
|||
|
}
|
|||
|
|
|||
|
.el-row {
|
|||
|
margin-bottom: 20px;
|
|||
|
&:last-child {
|
|||
|
margin-bottom: 0;
|
|||
|
}
|
|||
|
}
|
|||
|
.el-col {
|
|||
|
border-radius: 4px;
|
|||
|
}
|
|||
|
|
|||
|
.button-new-tag {
|
|||
|
margin-left: 10px;
|
|||
|
}
|
|||
|
</style>
|