|
|
@ -0,0 +1,614 @@
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
|
|
<el-dialog :title="'详情'" :visible.sync="open" width="80%" append-to-body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-card class="box-card" >
|
|
|
|
|
|
|
|
<div slot="header" class="clearfix">
|
|
|
|
|
|
|
|
<span class="el-icon-document">基础信息</span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--初始化流程加载表单信息-->
|
|
|
|
|
|
|
|
<el-col :span="16" :offset="4" v-if="formConfOpen" >
|
|
|
|
|
|
|
|
<div class="test-form">
|
|
|
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px" :disabled=!applyIsRevoked>
|
|
|
|
|
|
|
|
<el-form-item label="所属项目">
|
|
|
|
|
|
|
|
<el-select v-model="form.projectId"
|
|
|
|
|
|
|
|
clearable
|
|
|
|
|
|
|
|
filterable
|
|
|
|
|
|
|
|
placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
|
|
v-for="(item,index) in projectList"
|
|
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
|
|
:value="item.value">
|
|
|
|
|
|
|
|
</el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="项目问题">
|
|
|
|
|
|
|
|
<el-input type="textarea" v-model="form.issue"/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="解决方案">
|
|
|
|
|
|
|
|
<el-input type="textarea" v-model="form.solution"/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="工作记录">
|
|
|
|
|
|
|
|
<el-input type="textarea" v-model="form.workRecord"/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item v-if="applyIsRevoked" label="附件上传" prop="remark">
|
|
|
|
|
|
|
|
<el-upload
|
|
|
|
|
|
|
|
class="upload-demo"
|
|
|
|
|
|
|
|
:action="uploadFileUrl"
|
|
|
|
|
|
|
|
:on-error="handleUploadError"
|
|
|
|
|
|
|
|
:on-preview="handlePreview"
|
|
|
|
|
|
|
|
:on-success="handleSuccess"
|
|
|
|
|
|
|
|
:on-remove="handleRemove"
|
|
|
|
|
|
|
|
:headers="headers"
|
|
|
|
|
|
|
|
:file-list="fileList">
|
|
|
|
|
|
|
|
<el-button size="small" type="primary">点击上传</el-button>
|
|
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item v-if="!applyIsRevoked" label="附件">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div v-for="(item,index) in uploadedImgs" class="demo-image__preview">
|
|
|
|
|
|
|
|
<el-row :span="24">
|
|
|
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
|
|
|
<el-image
|
|
|
|
|
|
|
|
style="width: 100px; height: 100px"
|
|
|
|
|
|
|
|
:src="'data:image/png;base64,'+item.base64"
|
|
|
|
|
|
|
|
:preview-src-list="['data:image/png;base64,'+item.base64]">
|
|
|
|
|
|
|
|
</el-image>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="2">
|
|
|
|
|
|
|
|
<span>{{item.name}}</span>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-for="(item,index) in uploadedFiles" class="demo-image__preview">
|
|
|
|
|
|
|
|
<span>{{item.name}}</span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="margin-left:10%;margin-bottom: 20px;font-size: 14px;" v-if=applyIsRevoked>
|
|
|
|
|
|
|
|
<el-button icon="el-icon-edit-outline" type="success" size="mini" @click="handleClaimAndComplete">提交</el-button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
import {flowRecord} from "@/api/flowable/finished";
|
|
|
|
|
|
|
|
import Parser from '@/components/parser/Parser'
|
|
|
|
|
|
|
|
import {definitionStart, getProcessVariables, readXml, getFlowViewer} from "@/api/flowable/definition";
|
|
|
|
|
|
|
|
import {complete, rejectTask, returnList, returnTask, getNextFlowNode, delegate} from "@/api/flowable/todo";
|
|
|
|
|
|
|
|
import flow from '@/views/flowable/task/record/flow'
|
|
|
|
|
|
|
|
import {treeselect} from "@/api/system/dept";
|
|
|
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
|
|
|
import {listUser} from "@/api/system/user";
|
|
|
|
|
|
|
|
import {optionProject} from "@/api/system/project";
|
|
|
|
|
|
|
|
import {getToken} from "@/utils/auth";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
name: "Record",
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
|
|
|
Parser,
|
|
|
|
|
|
|
|
flow,
|
|
|
|
|
|
|
|
Treeselect
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
// 模型xml数据
|
|
|
|
|
|
|
|
xmlData: "",
|
|
|
|
|
|
|
|
taskList: [],
|
|
|
|
|
|
|
|
// 部门名称
|
|
|
|
|
|
|
|
deptName: undefined,
|
|
|
|
|
|
|
|
// 部门树选项
|
|
|
|
|
|
|
|
deptOptions: undefined,
|
|
|
|
|
|
|
|
// 用户表格数据
|
|
|
|
|
|
|
|
userList: null,
|
|
|
|
|
|
|
|
defaultProps: {
|
|
|
|
|
|
|
|
children: "children",
|
|
|
|
|
|
|
|
label: "label"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
|
|
deptId: undefined
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
open: false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
|
|
applyIsRevoked: false,
|
|
|
|
|
|
|
|
flowRecordList: [], // 流程流转数据
|
|
|
|
|
|
|
|
formConfCopy: {},
|
|
|
|
|
|
|
|
src: null,
|
|
|
|
|
|
|
|
rules: {}, // 表单校验
|
|
|
|
|
|
|
|
variablesForm: {}, // 流程变量数据
|
|
|
|
|
|
|
|
taskForm:{
|
|
|
|
|
|
|
|
returnTaskShow: false, // 是否展示回退表单
|
|
|
|
|
|
|
|
delegateTaskShow: false, // 是否展示回退表单
|
|
|
|
|
|
|
|
defaultTaskShow: true, // 默认处理
|
|
|
|
|
|
|
|
sendUserShow: false, // 审批用户
|
|
|
|
|
|
|
|
multiple: false,
|
|
|
|
|
|
|
|
comment:"", // 意见内容
|
|
|
|
|
|
|
|
procInsId: "", // 流程实例编号
|
|
|
|
|
|
|
|
instanceId: "", // 流程实例编号
|
|
|
|
|
|
|
|
deployId: "", // 流程定义编号
|
|
|
|
|
|
|
|
taskId: "" ,// 流程任务编号
|
|
|
|
|
|
|
|
procDefId: "", // 流程编号
|
|
|
|
|
|
|
|
vars: "",
|
|
|
|
|
|
|
|
targetKey:""
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
userDataList:[], // 流程候选人
|
|
|
|
|
|
|
|
assignee: null,
|
|
|
|
|
|
|
|
formConf: {}, // 默认表单数据
|
|
|
|
|
|
|
|
formConfOpen: false, // 是否加载默认表单数据
|
|
|
|
|
|
|
|
variables: [], // 流程变量数据
|
|
|
|
|
|
|
|
variablesData: {}, // 流程变量数据
|
|
|
|
|
|
|
|
variableOpen: false, // 是否加载流程变量数据
|
|
|
|
|
|
|
|
// 表单参数
|
|
|
|
|
|
|
|
form: {
|
|
|
|
|
|
|
|
projectId: 0,
|
|
|
|
|
|
|
|
workRecord: '',
|
|
|
|
|
|
|
|
issue: '',
|
|
|
|
|
|
|
|
submitDate: '',
|
|
|
|
|
|
|
|
solution: '',
|
|
|
|
|
|
|
|
attachmentIds:''
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
fileIdList: [],
|
|
|
|
|
|
|
|
fileList: [],
|
|
|
|
|
|
|
|
uploadFileUrl: process.env.VUE_APP_BASE_API + "/common/attachment/upload", // 上传的图片服务器地址
|
|
|
|
|
|
|
|
headers: {
|
|
|
|
|
|
|
|
Authorization: "Bearer " + getToken(),
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
uploadedImgs: [],
|
|
|
|
|
|
|
|
uploadedFiles: [],
|
|
|
|
|
|
|
|
projectList: [],
|
|
|
|
|
|
|
|
returnTaskList: [], // 回退列表数据
|
|
|
|
|
|
|
|
finished: 'false',
|
|
|
|
|
|
|
|
completeTitle: null,
|
|
|
|
|
|
|
|
completeOpen: false,
|
|
|
|
|
|
|
|
returnTitle: null,
|
|
|
|
|
|
|
|
returnOpen: false,
|
|
|
|
|
|
|
|
rejectOpen: false,
|
|
|
|
|
|
|
|
rejectTitle: null,
|
|
|
|
|
|
|
|
userData:[],
|
|
|
|
|
|
|
|
checkSendUser: false // 是否展示选择人员模块
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// activated() {
|
|
|
|
|
|
|
|
// this.taskForm.deployId = this.$route.query && this.$route.query.deployId;
|
|
|
|
|
|
|
|
// this.taskForm.taskId = this.$route.query && this.$route.query.taskId;
|
|
|
|
|
|
|
|
// this.taskForm.procInsId = this.$route.query && this.$route.query.procInsId;
|
|
|
|
|
|
|
|
// this.taskForm.executionId = this.$route.query && this.$route.query.executionId;
|
|
|
|
|
|
|
|
// this.taskForm.instanceId = this.$route.query && this.$route.query.procInsId;
|
|
|
|
|
|
|
|
// // 初始化表单
|
|
|
|
|
|
|
|
// this.taskForm.procDefId = this.$route.query && this.$route.query.procDefId;
|
|
|
|
|
|
|
|
// // 回显流程记录
|
|
|
|
|
|
|
|
// this.getFlowViewer(this.taskForm.procInsId,this.taskForm.executionId);
|
|
|
|
|
|
|
|
// this.getModelDetail(this.taskForm.deployId);
|
|
|
|
|
|
|
|
// // 流程任务重获取变量表单
|
|
|
|
|
|
|
|
// if (this.taskForm.taskId){
|
|
|
|
|
|
|
|
// this.processVariables( this.taskForm.taskId)
|
|
|
|
|
|
|
|
// this.getNextFlowNode(this.taskForm.taskId)
|
|
|
|
|
|
|
|
// this.taskForm.deployId = null
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// this.optionList();
|
|
|
|
|
|
|
|
// this.getFlowRecordList( this.taskForm.procInsId, this.taskForm.deployId);
|
|
|
|
|
|
|
|
// this.finished = this.$route.query && this.$route.query.finished
|
|
|
|
|
|
|
|
// this.fileIdList = []
|
|
|
|
|
|
|
|
// this.uploadedFiles = []
|
|
|
|
|
|
|
|
// this.uploadedImgs = []
|
|
|
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
init(procInsId, deployId, taskId, finished) {
|
|
|
|
|
|
|
|
console.log('init:procInsId=',procInsId)
|
|
|
|
|
|
|
|
this.uploadedImgs = []
|
|
|
|
|
|
|
|
this.open = true
|
|
|
|
|
|
|
|
this.taskForm.deployId = deployId;
|
|
|
|
|
|
|
|
this.taskForm.taskId = taskId;
|
|
|
|
|
|
|
|
this.taskForm.procInsId = procInsId;
|
|
|
|
|
|
|
|
this.taskForm.instanceId = procInsId;
|
|
|
|
|
|
|
|
// this.taskForm.executionId = this.$route.query && this.$route.query.executionId;
|
|
|
|
|
|
|
|
// this.taskForm.instanceId = this.$route.query && this.$route.query.procInsId;
|
|
|
|
|
|
|
|
// 初始化表单
|
|
|
|
|
|
|
|
// this.taskForm.procDefId = this.$route.query && this.$route.query.procDefId;
|
|
|
|
|
|
|
|
// 回显流程记录
|
|
|
|
|
|
|
|
this.getFlowViewer(this.taskForm.procInsId, this.taskForm.executionId);
|
|
|
|
|
|
|
|
this.getModelDetail(this.taskForm.deployId);
|
|
|
|
|
|
|
|
// 流程任务重获取变量表单
|
|
|
|
|
|
|
|
if (this.taskForm.taskId) {
|
|
|
|
|
|
|
|
this.processVariables(this.taskForm.taskId)
|
|
|
|
|
|
|
|
this.getNextFlowNode(this.taskForm.taskId)
|
|
|
|
|
|
|
|
this.taskForm.deployId = null
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.optionList();
|
|
|
|
|
|
|
|
this.getFlowRecordList(this.taskForm.procInsId, this.taskForm.deployId);
|
|
|
|
|
|
|
|
this.finished = finished;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 查询部门下拉树结构 */
|
|
|
|
|
|
|
|
getTreeselect() {
|
|
|
|
|
|
|
|
treeselect().then(response => {
|
|
|
|
|
|
|
|
this.deptOptions = response.data;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 查询用户列表 */
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
|
|
listUser(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
|
|
|
|
|
|
|
this.userList = response.rows;
|
|
|
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 筛选节点
|
|
|
|
|
|
|
|
filterNode(value, data) {
|
|
|
|
|
|
|
|
if (!value) return true;
|
|
|
|
|
|
|
|
return data.label.indexOf(value) !== -1;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 节点单击事件
|
|
|
|
|
|
|
|
handleNodeClick(data) {
|
|
|
|
|
|
|
|
this.queryParams.deptId = data.id;
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** xml 文件 */
|
|
|
|
|
|
|
|
getModelDetail(deployId) {
|
|
|
|
|
|
|
|
// 发送请求,获取xml
|
|
|
|
|
|
|
|
readXml(deployId).then(res => {
|
|
|
|
|
|
|
|
this.xmlData = res.data
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
getFlowViewer(procInsId,executionId) {
|
|
|
|
|
|
|
|
getFlowViewer(procInsId,executionId).then(res => {
|
|
|
|
|
|
|
|
this.taskList = res.data
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
isRefuse(comment) {
|
|
|
|
|
|
|
|
return comment !== null &&comment !== undefined && comment.type !== null && comment.type !== undefined && comment.type === "3"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
setIcon(finishTime,comment) {
|
|
|
|
|
|
|
|
console.log('setIcon::',comment)
|
|
|
|
|
|
|
|
// 驳回状态
|
|
|
|
|
|
|
|
if (this.isRefuse(comment)) {
|
|
|
|
|
|
|
|
return "el-icon-close";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else if (finishTime) {
|
|
|
|
|
|
|
|
return "el-icon-check";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return "el-icon-time";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
setColor(val) {
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
|
|
|
|
return "#2bc418";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return "#b3bdbb";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
|
|
|
if (selection) {
|
|
|
|
|
|
|
|
this.userData = selection
|
|
|
|
|
|
|
|
const selectVal = selection.map(item => item.userId);
|
|
|
|
|
|
|
|
if (selectVal instanceof Array) {
|
|
|
|
|
|
|
|
this.taskForm.values = {
|
|
|
|
|
|
|
|
"approval": selectVal.join(',')
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.taskForm.values = {
|
|
|
|
|
|
|
|
"approval": selectVal
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
// 关闭标签
|
|
|
|
|
|
|
|
handleClose(tag) {
|
|
|
|
|
|
|
|
this.userData.splice(this.userData.indexOf(tag), 1);
|
|
|
|
|
|
|
|
this.$refs.singleTable.toggleRowSelection(tag, false)
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 流程变量赋值 */
|
|
|
|
|
|
|
|
handleCheckChange(val) {
|
|
|
|
|
|
|
|
if (val instanceof Array) {
|
|
|
|
|
|
|
|
this.taskForm.values = {
|
|
|
|
|
|
|
|
"approval": val.join(',')
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.taskForm.values = {
|
|
|
|
|
|
|
|
"approval": val
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 流程流转记录 */
|
|
|
|
|
|
|
|
getFlowRecordList(procInsId, deployId) {
|
|
|
|
|
|
|
|
const params = {procInsId: procInsId, deployId: deployId}
|
|
|
|
|
|
|
|
flowRecord(params).then(res => {
|
|
|
|
|
|
|
|
this.flowRecordList = res.data.flowList;
|
|
|
|
|
|
|
|
this.uploadedImgs = res.data.imgs;
|
|
|
|
|
|
|
|
this.uploadedFiles = res.data.files;
|
|
|
|
|
|
|
|
// 流程过程中不存在初始化表单 直接读取的流程变量中存储的表单值
|
|
|
|
|
|
|
|
// if (res.data.formData) {
|
|
|
|
|
|
|
|
this.form = res.data.form;
|
|
|
|
|
|
|
|
console.log("res.data.form;", res.data.form)
|
|
|
|
|
|
|
|
console.log("this.form ", this.form)
|
|
|
|
|
|
|
|
if (this.taskForm.executionId === undefined) {
|
|
|
|
|
|
|
|
this.formConfOpen = true
|
|
|
|
|
|
|
|
if (this.flowRecordList && this.flowRecordList.length !== 0) {
|
|
|
|
|
|
|
|
console.log("this.flowRecordList[0]", this.flowRecordList[0])
|
|
|
|
|
|
|
|
this.applyIsRevoked = this.flowRecordList[0].taskName === '提交汇报';
|
|
|
|
|
|
|
|
console.log("applyIsRevoked", this.applyIsRevoked)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
}).catch(res => {
|
|
|
|
|
|
|
|
this.goBack();
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
fillFormData(form, data) {
|
|
|
|
|
|
|
|
form.fields.forEach(item => {
|
|
|
|
|
|
|
|
const val = data[item.__vModel__]
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
|
|
|
|
item.__config__.defaultValue = val
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 获取流程变量内容 */
|
|
|
|
|
|
|
|
processVariables(taskId) {
|
|
|
|
|
|
|
|
if (taskId) {
|
|
|
|
|
|
|
|
// 提交流程申请时填写的表单存入了流程变量中后续任务处理时需要展示
|
|
|
|
|
|
|
|
getProcessVariables(taskId).then(res => {
|
|
|
|
|
|
|
|
// this.variables = res.data.variables;
|
|
|
|
|
|
|
|
this.form = res.data;
|
|
|
|
|
|
|
|
this.variableOpen = true
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 查询项目列表 */
|
|
|
|
|
|
|
|
optionList() {
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
|
optionProject().then(response => {
|
|
|
|
|
|
|
|
this.projectList = response.data;
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 根据当前任务或者流程设计配置的下一步节点 */
|
|
|
|
|
|
|
|
getNextFlowNode(taskId) {
|
|
|
|
|
|
|
|
// 根据当前任务或者流程设计配置的下一步节点 todo 暂时未涉及到考虑网关、表达式和多节点情况
|
|
|
|
|
|
|
|
const params = {taskId: taskId}
|
|
|
|
|
|
|
|
getNextFlowNode(params).then(res => {
|
|
|
|
|
|
|
|
const data = res.data;
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
|
|
|
|
this.checkSendUser = true
|
|
|
|
|
|
|
|
if (data.type === 'assignee') { // 指定人员
|
|
|
|
|
|
|
|
this.userDataList = res.data.userList;
|
|
|
|
|
|
|
|
} else if (data.type === 'candidateUsers') { // 指定人员(多个)
|
|
|
|
|
|
|
|
this.userDataList = res.data.userList;
|
|
|
|
|
|
|
|
this.taskForm.multiple = true;
|
|
|
|
|
|
|
|
} else if (data.type === 'candidateGroups') { // 指定组(所属角色接收任务)
|
|
|
|
|
|
|
|
res.data.roleList.forEach(role => {
|
|
|
|
|
|
|
|
role.userId = role.roleId;
|
|
|
|
|
|
|
|
role.nickName = role.roleName;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
this.userDataList = res.data.roleList;
|
|
|
|
|
|
|
|
this.taskForm.multiple = false;
|
|
|
|
|
|
|
|
} else if (data.type === 'multiInstance') { // 会签?
|
|
|
|
|
|
|
|
this.userDataList = res.data.userList;
|
|
|
|
|
|
|
|
this.taskForm.multiple = true;
|
|
|
|
|
|
|
|
}else if (data.type === 'fixed') { // 已经固定人员接收下一任务
|
|
|
|
|
|
|
|
this.checkSendUser = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 审批任务选择 */
|
|
|
|
|
|
|
|
handleComplete() {
|
|
|
|
|
|
|
|
this.completeOpen = true;
|
|
|
|
|
|
|
|
this.completeTitle = "审批流程";
|
|
|
|
|
|
|
|
this.getTreeselect();
|
|
|
|
|
|
|
|
}, /** 确认并提交任务选择 */
|
|
|
|
|
|
|
|
handleClaimAndComplete() {
|
|
|
|
|
|
|
|
if (this.fileIdList.length > 0) {
|
|
|
|
|
|
|
|
this.form.attachmentIds=this.fileIdList.map(e => e.id).join(',')
|
|
|
|
|
|
|
|
console.log("this.form.attachmentIds", this.form.attachmentIds);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.taskForm.comment = '提交任务';
|
|
|
|
|
|
|
|
this.taskForm.vars= JSON.stringify(this.form)
|
|
|
|
|
|
|
|
this.taskForm.taskId= this.flowRecordList[0].taskId
|
|
|
|
|
|
|
|
complete(this.taskForm).then(response => {
|
|
|
|
|
|
|
|
this.msgSuccess(response.msg);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 审批任务 */
|
|
|
|
|
|
|
|
taskComplete() {
|
|
|
|
|
|
|
|
if (!this.taskForm.values && this.checkSendUser){
|
|
|
|
|
|
|
|
this.msgError("请选择流程接收人员");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.taskForm.comment){
|
|
|
|
|
|
|
|
this.msgError("请输入审批意见");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
complete(this.taskForm).then(response => {
|
|
|
|
|
|
|
|
this.msgSuccess(response.msg);
|
|
|
|
|
|
|
|
this.goBack();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 委派任务 */
|
|
|
|
|
|
|
|
handleDelegate() {
|
|
|
|
|
|
|
|
this.taskForm.delegateTaskShow = true;
|
|
|
|
|
|
|
|
this.taskForm.defaultTaskShow = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleAssign(){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 返回页面 */
|
|
|
|
|
|
|
|
goBack() {
|
|
|
|
|
|
|
|
// 关闭当前标签页并返回上个页面
|
|
|
|
|
|
|
|
this.$store.dispatch("tagsView/delView", this.$route);
|
|
|
|
|
|
|
|
this.$router.go(-1)
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 接收子组件传的值 */
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 申请流程表单数据提交 */
|
|
|
|
|
|
|
|
submitForm(data) {
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
|
|
|
|
const variables = data.valData;
|
|
|
|
|
|
|
|
const formData = data.formData;
|
|
|
|
|
|
|
|
formData.disabled = true;
|
|
|
|
|
|
|
|
formData.formBtns = false;
|
|
|
|
|
|
|
|
if (this.taskForm.procDefId) {
|
|
|
|
|
|
|
|
variables.variables = formData;
|
|
|
|
|
|
|
|
// 启动流程并将表单数据加入流程变量
|
|
|
|
|
|
|
|
definitionStart(this.taskForm.procDefId, JSON.stringify(variables)).then(res => {
|
|
|
|
|
|
|
|
this.msgSuccess(res.msg);
|
|
|
|
|
|
|
|
this.goBack();
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 驳回任务 */
|
|
|
|
|
|
|
|
handleReject() {
|
|
|
|
|
|
|
|
this.rejectOpen = true;
|
|
|
|
|
|
|
|
this.rejectTitle = "驳回流程";
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 驳回任务 */
|
|
|
|
|
|
|
|
taskReject() {
|
|
|
|
|
|
|
|
this.$refs["taskForm"].validate(valid => {
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
|
|
rejectTask(this.taskForm).then(res => {
|
|
|
|
|
|
|
|
this.msgSuccess(res.msg);
|
|
|
|
|
|
|
|
this.goBack();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 可退回任务列表 */
|
|
|
|
|
|
|
|
handleReturn() {
|
|
|
|
|
|
|
|
this.returnOpen = true;
|
|
|
|
|
|
|
|
this.returnTitle = "退回流程";
|
|
|
|
|
|
|
|
returnList(this.taskForm).then(res => {
|
|
|
|
|
|
|
|
this.returnTaskList = res.data;
|
|
|
|
|
|
|
|
this.taskForm.values = null;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 提交退回任务 */
|
|
|
|
|
|
|
|
taskReturn() {
|
|
|
|
|
|
|
|
this.$refs["taskForm"].validate(valid => {
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
|
|
returnTask(this.taskForm).then(res => {
|
|
|
|
|
|
|
|
this.msgSuccess(res.msg);
|
|
|
|
|
|
|
|
this.goBack()
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 取消回退任务按钮 */
|
|
|
|
|
|
|
|
cancelTask() {
|
|
|
|
|
|
|
|
this.taskForm.returnTaskShow = false;
|
|
|
|
|
|
|
|
this.taskForm.defaultTaskShow = true;
|
|
|
|
|
|
|
|
this.taskForm.sendUserShow = true;
|
|
|
|
|
|
|
|
this.returnTaskList = [];
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 委派任务 */
|
|
|
|
|
|
|
|
submitDeleteTask() {
|
|
|
|
|
|
|
|
this.$refs["taskForm"].validate(valid => {
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
|
|
delegate(this.taskForm).then(response => {
|
|
|
|
|
|
|
|
this.msgSuccess(response.msg);
|
|
|
|
|
|
|
|
this.goBack();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 取消回退任务按钮 */
|
|
|
|
|
|
|
|
cancelDelegateTask() {
|
|
|
|
|
|
|
|
this.taskForm.delegateTaskShow = false;
|
|
|
|
|
|
|
|
this.taskForm.defaultTaskShow = true;
|
|
|
|
|
|
|
|
this.taskForm.sendUserShow = true;
|
|
|
|
|
|
|
|
this.returnTaskList = [];
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
|
|
|
// 删除对应id
|
|
|
|
|
|
|
|
console.log(file, fileList);
|
|
|
|
|
|
|
|
for(var i = this.fileIdList.length -1; i >= 0 ; i--){
|
|
|
|
|
|
|
|
if(this.fileIdList[i].uid == file.uid){
|
|
|
|
|
|
|
|
// 删除 fileIdList中已删除文件的id
|
|
|
|
|
|
|
|
this.fileIdList.splice(i, 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleUploadError(err, file, fileList) {
|
|
|
|
|
|
|
|
this.$message.error("上传失败, 请重试");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleSuccess(res, file, fileList) {
|
|
|
|
|
|
|
|
if (res.code !== 200) {
|
|
|
|
|
|
|
|
this.$message.error("上传失败, 请重试");
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
this.fileIdList.push({
|
|
|
|
|
|
|
|
id:res.data.id,
|
|
|
|
|
|
|
|
uid:file.uid // 上传文件,唯一id
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
// 存入id
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handlePreview(file) {
|
|
|
|
|
|
|
|
console.log(file);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
.test-form {
|
|
|
|
|
|
|
|
margin: 15px auto;
|
|
|
|
|
|
|
|
width: 800px;
|
|
|
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.my-label {
|
|
|
|
|
|
|
|
background: #E1F3D8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|