| | |
| | | <div class="app-container"> |
| | | <el-card class="box-card" > |
| | | <div slot="header" class="clearfix"> |
| | | <span class="el-icon-document">{{`流程处理:` + processName}}</span> |
| | | <span class="el-icon-document">{{`流程办理:` + processName}}</span> |
| | | <el-button style="float: right;" size="mini" type="danger" @click="goBack">关闭</el-button> |
| | | </div> |
| | | <el-tabs tab-position="top" v-model="activeName" @tab-click="handleClick"> |
| | |
| | | <el-col :span="16" :offset="4" v-if="formDataList && formDataList.length > 0"> |
| | | <div v-for="(formDataObj, index) in formDataList" :key="index" class="form-warp" style="position: relative"> |
| | | <div v-if="!formDataObj.current" style="position: absolute; top: 2px; right: 2px"> |
| | | <el-button type="danger" disabled>驳回(功能开发中)</el-button> |
| | | <el-button type="danger" @click="openRejectTask(formDataObj.beforeNodeDefId)">驳回</el-button> |
| | | </div> |
| | | <div v-if="formDataObj.current" style="margin-bottom: 15px;color: #409eff">当前阶段:<span style="color: red">{{formDataObj.beforeNodeName}}</span></div> |
| | | <div v-else style="margin-bottom: 15px;color: #409eff">前置阶段:<span style="color: #d5904b">{{formDataObj.beforeNodeName}}</span></div> |
| | |
| | | <div style="display: flex;justify-content: center; align-items: center; margin: 20px 0"> |
| | | <el-button type="primary" @click="submitForm">确认并提交</el-button> |
| | | <el-button type="primary" disabled @click="submitForm">协同办理(功能开发中)</el-button> |
| | | <el-button type="primary" disabled @click="submitForm">转交他人办理(功能开发中)</el-button> |
| | | <el-button type="primary" @click="openDelegation(formDataList[0].beforeNodeName)">转办</el-button> |
| | | <!-- <el-button type="primary" @click="resetForm">重 置</el-button>--> |
| | | </div> |
| | | </el-col> |
| | |
| | | </span> |
| | | </el-dialog> |
| | | </el-card> |
| | | |
| | | |
| | | <el-dialog |
| | | :title="`驳回:` + rejectForm.projectName" |
| | | :visible.sync="rejectShow" |
| | | width="950px" |
| | | :destroy-on-close="true" |
| | | :close-on-click-modal="false" |
| | | > |
| | | <div> |
| | | <el-input |
| | | type="textarea" |
| | | :rows="3" |
| | | placeholder="审核建议" |
| | | v-model="rejectForm.comment"> |
| | | </el-input> |
| | | </div> |
| | | <div class="opBut"> |
| | | <el-button type="danger" size="small" @click="rejectTask">驳回</el-button> |
| | | </div> |
| | | </el-dialog> |
| | | |
| | | <el-dialog |
| | | :title="`转办:` + delegationForm.taskName" |
| | | :visible.sync="delegationShow" |
| | | width="950px" |
| | | :destroy-on-close="true" |
| | | :close-on-click-modal="false" |
| | | > |
| | | <div> |
| | | <el-form :model="delegationForm" :rules="delegationFormRules" ref="delegationForm" label-width="100px" class="demo-ruleForm"> |
| | | <el-alert |
| | | title="请选择要转办的用户对象,用户类型不同处理人不同" |
| | | type="info" |
| | | :closable="false" |
| | | style="margin-bottom: 8px" |
| | | show-icon> |
| | | </el-alert> |
| | | <el-form-item label="用户类型" prop="peopleType"> |
| | | <el-select v-model="delegationForm.peopleType" @change="peopleTypeChange" placeholder="请选择用户类型"> |
| | | <el-option label="指定人员" value="FIX_USER"></el-option> |
| | | <el-option label="候选用户" value="USER"></el-option> |
| | | <el-option label="候选部门" value="DEPT"></el-option> |
| | | <el-option label="候选角色" value="ROLE"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item v-if="delegationForm.peopleType === 'DEPT'" label="候选部门" prop="targetId"> |
| | | <MyDept ref="dept" :checkeds="delegationDeptSelect" :show="deptShow" @close="closeDept" @submit="getDeptSelect"/> |
| | | <div style="display: flex;align-items: center"> |
| | | <div> |
| | | <el-tag v-for="dept in delegationDeptSelect" :key="dept.id + 'zxc'" type="info" closable @close="removeDept(dept)">{{dept.label}}</el-tag> |
| | | </div> |
| | | <el-button style="margin-left: 8px" type="text" @click="editDept">选择</el-button> |
| | | </div> |
| | | </el-form-item> |
| | | <el-form-item v-if="delegationForm.peopleType === 'FIX_USER'" label="指定用户" prop="targetId"> |
| | | <single-user ref="singleUser" :select-user="delegationForm.targetId" :show="singleUserShow" @close="closeSingleUser" @submit="getSingleUserSelect"/> |
| | | <div style="display: flex;align-items: center"> |
| | | <div> |
| | | <el-tag v-for="user in delegationUserSelect" :key="user.userId + 'abc'" type="info" closable @close="removeSingleUser(user)">{{user.nickName}}</el-tag> |
| | | </div> |
| | | <el-button style="margin-left: 8px" type="text" @click="editSingleUser">选择</el-button> |
| | | </div> |
| | | </el-form-item> |
| | | <el-form-item v-if="delegationForm.peopleType === 'USER'" label="候选用户" prop="targetId"> |
| | | <mult-user ref="multUser" :select-user="delegationUserSelect" :show="multUserShow" @close="closeMultUser" @submit="getMultUserSelect"/> |
| | | <div style="display: flex;align-items: center"> |
| | | <div> |
| | | <el-tag v-for="user in delegationUserSelect" :key="user.userId + 'qwe'" type="info" closable @close="removeMultUser(user)">{{user.nickName}}</el-tag> |
| | | </div> |
| | | <el-button style="margin-left: 8px" type="text" @click="editMultUser">选择</el-button> |
| | | </div> |
| | | </el-form-item> |
| | | <el-form-item v-if="delegationForm.peopleType === 'ROLE'" label="候选角色" prop="targetId"> |
| | | <my-role ref="role" :select-values="delegationRoleSelect" :show="roleShow" @close="closeRole" @submit="getRoleSelect"/> |
| | | <div style="display: flex;align-items: center"> |
| | | <div> |
| | | <el-tag v-for="role in delegationRoleSelect" :key="role.roleId + 'rty'" type="info" closable @close="removeRole(role)">{{role.roleName}}</el-tag> |
| | | </div> |
| | | <el-button style="margin-left: 8px" type="text" @click="editRole">选择</el-button> |
| | | </div> |
| | | </el-form-item> |
| | | </el-form> |
| | | </div> |
| | | <div class="opBut"> |
| | | <el-button type="danger" size="small" @click="delegation">转办</el-button> |
| | | </div> |
| | | </el-dialog> |
| | | |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import {definitionStart, flowXmlAndNode} from "@/api/flowable/definition"; |
| | | import BpmnViewer from '@/components/Process/viewer'; |
| | | import MyDept from '@/components/flow/Dept/MyDept' |
| | | import SingleUser from '@/components/flow/User/SingleUser' |
| | | import MultUser from '@/components/flow/User/MultUser' |
| | | import MyRole from '@/components/flow/Role/MyRole' |
| | | import {completeSubmitFormTask} from "@/api/flowable/process"; |
| | | import { flowTaskForm } from "@/api/flowable/todo"; |
| | | import {getNextFlowNodeByStart} from "@/api/flowable/todo"; |
| | | import FlowUser from '@/components/flow/User' |
| | | import FlowRole from '@/components/flow/Role' |
| | | import {rejectTask} from "@/api/flowable/process"; |
| | | import {taskDelegation} from "@/api/projectProcess/projectProcess"; |
| | | |
| | | export default { |
| | | name: "Record", |
| | | components: { |
| | | BpmnViewer, |
| | | FlowUser, |
| | | FlowRole, |
| | | MyRole, |
| | | MyDept, |
| | | SingleUser, |
| | | MultUser, |
| | | }, |
| | | props: {}, |
| | | data() { |
| | | return { |
| | | roleShow: false, // 角色组显示 |
| | | delegationRoleSelect: [], // 选中角色 |
| | | multUserShow: false, // 用户组显示 |
| | | singleUserShow: false, // 指定用户显示 |
| | | delegationUserSelect: [], // 选中的用户 |
| | | deptShow: false, // 部门组显示 |
| | | delegationDeptSelect: [], // 选中部门 |
| | | delegationFormRules: { |
| | | peopleType: [ |
| | | { required: true, message: '请选择用户类型', trigger: 'change' } |
| | | ], |
| | | targetId: [ |
| | | { required: true, message: '请选择转办对象', trigger: 'blur' } |
| | | ], |
| | | }, |
| | | delegationForm: { // 转办表单 |
| | | taskId: '', |
| | | peopleType: '', |
| | | targetId: '', |
| | | taskName: '' |
| | | }, |
| | | delegationShow: false, // 转办显示 |
| | | rejectShow: false, // 驳回显示 |
| | | goBackParams: {}, |
| | | formDataList: [], // 表单列表 |
| | | taskId: '', |
| | |
| | | checkValues: null, // 选中任务接收人员数据 |
| | | formData: {}, // 填写的表单数据, |
| | | multiInstanceVars: '', // 会签节点 |
| | | formJson: {} // 表单json |
| | | formJson: {}, // 表单json |
| | | rejectForm: { |
| | | comment: '', // 审核意见 |
| | | taskId: '', |
| | | // rejectedTaskDefKey: '' // 被驳回的任务key |
| | | } |
| | | }; |
| | | }, |
| | | mounted() { |
| | |
| | | this.getFlowFormData(this.taskId); |
| | | }, |
| | | methods: { |
| | | removeDept(dept) { |
| | | let index = this.delegationDeptSelect.indexOf(dept); |
| | | if (index !== -1) { |
| | | this.delegationDeptSelect.splice(index, 1); |
| | | } |
| | | this.delegationForm.targetId = this.delegationDeptSelect.map(item => item.id).join(",") |
| | | }, |
| | | removeRole(role) { |
| | | let index = this.delegationRoleSelect.indexOf(role); |
| | | if (index !== -1) { |
| | | this.delegationRoleSelect.splice(index, 1); |
| | | } |
| | | this.delegationForm.targetId = this.delegationRoleSelect.map(item => item.roleId).join(",") |
| | | }, |
| | | removeMultUser(user) { |
| | | let index = this.delegationUserSelect.indexOf(user); |
| | | if (index !== -1) { |
| | | this.delegationUserSelect.splice(index, 1); |
| | | } |
| | | this.delegationForm.targetId = this.delegationUserSelect.map(item => item.userId).join(",") |
| | | }, |
| | | removeSingleUser(user) { |
| | | // 因为只能选一个用户,所以删了就没了 |
| | | this.delegationUserSelect = [] |
| | | this.delegationForm.targetId = '' |
| | | }, |
| | | getTips() { |
| | | if (this.delegationForm.peopleType === 'USER' || this.delegationForm.peopleType === 'FIX_USER') { |
| | | return this.delegationUserSelect.map(item => item.nickName).join("、") |
| | | } else if (this.delegationForm.peopleType === 'DEPT') { |
| | | return this.delegationDeptSelect.map(item => item.label).join("、") |
| | | } else if (this.delegationForm.peopleType === 'ROLE') { |
| | | return this.delegationRoleSelect.map(item => item.roleName).join("、") |
| | | } |
| | | }, |
| | | delegation() { |
| | | this.$refs['delegationForm'].validate((valid) => { |
| | | if (valid) { |
| | | this.$confirm(`确定要将此任务交由【${this.getTips()}】处理吗?`, '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning' |
| | | }).then(() => { |
| | | taskDelegation(this.delegationForm).then(res => { |
| | | this.$message.success("已发起转办申请") |
| | | this.goBack() |
| | | }) |
| | | }).catch(() => { |
| | | this.$message({ |
| | | type: 'info', |
| | | message: '已取消转办操作' |
| | | }); |
| | | }); |
| | | } else { |
| | | console.log('error submit!!'); |
| | | return false; |
| | | } |
| | | }); |
| | | }, |
| | | peopleTypeChange(val) { |
| | | if (val === 'DEPT') { |
| | | this.$nextTick(() => { |
| | | this.$refs.dept.setCheckList(this.delegationDeptSelect) |
| | | }) |
| | | this.deptShow = true |
| | | } else if (val === 'FIX_USER') { |
| | | this.singleUserShow = true |
| | | } else if (val === 'USER') { |
| | | this.multUserShow = true |
| | | } else if (val === 'ROLE') { |
| | | this.roleShow = true |
| | | } |
| | | }, |
| | | editDept() { |
| | | this.$nextTick(() => { |
| | | this.$refs.dept.setCheckList(this.delegationDeptSelect) |
| | | }) |
| | | this.deptShow = true |
| | | }, |
| | | editSingleUser() { |
| | | if (this.delegationUserSelect && this.delegationUserSelect.length > 0) { |
| | | this.$nextTick(() => { |
| | | this.$refs.singleUser.setChecked(this.delegationUserSelect[0]) |
| | | }) |
| | | } |
| | | this.singleUserShow = true |
| | | }, |
| | | editRole() { |
| | | if (this.delegationRoleSelect && this.delegationRoleSelect.length > 0) { |
| | | this.$nextTick(() => { |
| | | this.$refs.role.setChecked(this.delegationRoleSelect) |
| | | }) |
| | | } |
| | | this.roleShow = true |
| | | }, |
| | | editMultUser() { |
| | | if (this.delegationForm.targetId) { |
| | | this.$nextTick(() => { |
| | | this.$refs.multUser.setChecked(this.delegationUserSelect) |
| | | }) |
| | | } |
| | | this.multUserShow = true |
| | | }, |
| | | getDeptSelect(deptList) { |
| | | if (deptList && deptList.length > 0) { |
| | | this.delegationForm.targetId = deptList.map(item => item.id).join(",") |
| | | this.delegationDeptSelect = deptList |
| | | } |
| | | this.deptShow = false |
| | | }, |
| | | getMultUserSelect(userList) { |
| | | if (userList && userList.length > 0) { |
| | | this.delegationForm.targetId = userList.map(item => item.userId).join(",") |
| | | this.delegationUserSelect = userList |
| | | } else { |
| | | this.delegationForm.targetId = '' |
| | | this.delegationUserSelect = [] |
| | | } |
| | | this.multUserShow = false |
| | | }, |
| | | getRoleSelect(roleList) { |
| | | if (roleList && roleList.length > 0) { |
| | | this.delegationForm.targetId = roleList.map(item => item.roleId).join(",") |
| | | this.delegationRoleSelect = roleList |
| | | } else { |
| | | this.delegationForm.targetId = '' |
| | | this.delegationRoleSelect = [] |
| | | } |
| | | this.roleShow = false |
| | | }, |
| | | getSingleUserSelect(user) { |
| | | if (user) { |
| | | this.delegationForm.targetId = user.userId |
| | | this.delegationUserSelect = [user] |
| | | } else { |
| | | this.delegationForm.targetId = '' |
| | | this.delegationUserSelect = [] |
| | | } |
| | | this.singleUserShow = false |
| | | }, |
| | | closeDept() { |
| | | this.deptShow = false |
| | | }, |
| | | closeSingleUser() { |
| | | this.singleUserShow = false |
| | | }, |
| | | closeRole() { |
| | | this.roleShow = false |
| | | }, |
| | | closeMultUser() { |
| | | this.multUserShow = false |
| | | }, |
| | | openDelegation(taskName) { |
| | | this.delegationForm.taskName = taskName |
| | | this.delegationForm.taskId = this.taskId |
| | | this.delegationShow = true |
| | | }, |
| | | rejectTask() { |
| | | rejectTask(this.rejectForm).then(res => { |
| | | this.rejectShow = false |
| | | this.$message.success("驳回成功") |
| | | }) |
| | | }, |
| | | openRejectTask(rejectedTaskDefKey) { |
| | | // this.rejectForm.rejectedTaskDefKey = rejectedTaskDefKey; |
| | | this.rejectForm.taskId = this.taskId; |
| | | this.rejectShow = true |
| | | }, |
| | | handleClick(tab, event) { |
| | | if (tab.name === '2'){ |
| | | flowXmlAndNode({deployId:this.deployId}).then(res => { |
| | |
| | | }, |
| | | /** 返回页面 */ |
| | | goBack() { |
| | | // 关闭当前标签页 |
| | | this.$store.dispatch("tagsView/delView", this.$route); |
| | | // 跳转路由 |
| | | this.$router.push({ |
| | | path: '/projectFlow/detail', |
| | | query: this.goBackParams |
| | | query: { |
| | | projectId: this.goBackParams.projectId, |
| | | processDefId: this.goBackParams.processDefId, |
| | | processName: this.goBackParams.processName |
| | | } |
| | | }) |
| | | }, |
| | | /** 申请流程表单数据提交 */ |
| | |
| | | }; |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | .opBut { |
| | | display: flex;justify-content: center;align-items: center;width: 100%; margin-top: 8px |
| | | } |
| | | .test-form { |
| | | margin: 15px auto; |
| | | width: 800px; |