jhprjv2/ruoyi-ui/src/views/flowable/definition/index.vue

720 lines
21 KiB
Vue
Raw Normal View History

2023-08-10 21:09:49 +08:00
<template>
<div class="app-container">
2023-09-05 00:45:38 +08:00
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="流程名称" prop="name">
2023-08-10 21:09:49 +08:00
<el-input
v-model="queryParams.name"
2023-09-05 00:45:38 +08:00
placeholder="请输入流程名称"
2023-08-10 21:09:49 +08:00
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
2023-09-05 00:45:38 +08:00
<el-form-item label="流程分类" prop="category">
<el-select
v-model="queryParams.category"
@keyup.enter.native="handleQuery"
placeholder="请选择流程分类"
clearable
>
<el-option
v-for="dict in dict.type.sys_process_category"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="开始时间" prop="deployTime" v-if="false">
<el-date-picker
clearable
size="small"
v-model="queryParams.deployTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择时间"
>
2023-08-10 21:09:49 +08:00
</el-date-picker>
</el-form-item>
<el-form-item>
2023-09-05 00:45:38 +08:00
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"
>搜索</el-button
>
2023-08-10 21:09:49 +08:00
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- plain-->
<!-- icon="el-icon-upload"-->
<!-- size="mini"-->
<!-- @click="handleImport"-->
<!-- >导入</el-button>-->
<!-- </el-col>-->
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-plus"
size="mini"
@click="handleLoadXml"
2023-09-05 00:45:38 +08:00
>新增</el-button
>
2023-08-10 21:09:49 +08:00
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:deployment:remove']"
2023-09-05 00:45:38 +08:00
>删除</el-button
>
2023-08-10 21:09:49 +08:00
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-alert title="流程设计说明" type="success">
2023-09-05 00:45:38 +08:00
<template slot="title">
2023-08-10 21:09:49 +08:00
<p>流程设计说明:</p>
<div>1XML文件中的流程定义id属性用作流程定义的key参数</div>
2023-09-05 00:45:38 +08:00
<div>
2XML文件中的流程定义name属性用作流程定义的name参数如果未给定name属性会使用id作为name
</div>
<div>
3当每个唯一key的流程第一次部署时指定版本为1对其后所有使用相同key的流程定义部署时版本会在该key当前已部署的最高版本号基础上加1key参数用于区分流程定义
</div>
<div>
4id参数设置为{processDefinitionKey}:{processDefinitionVersion}:{generated-id}其中generated-id是一个唯一数字用以保证在集群环境下流程定义缓存中流程id的唯一性
</div>
2023-08-10 21:09:49 +08:00
</template>
</el-alert>
2023-09-05 00:45:38 +08:00
<el-table
v-loading="loading"
fit
:data="definitionList"
border
@selection-change="handleSelectionChange"
>
2023-08-10 21:09:49 +08:00
<el-table-column type="selection" width="55" align="center" />
2023-09-05 00:45:38 +08:00
<el-table-column
label="流程编号"
align="center"
prop="deploymentId"
:show-overflow-tooltip="true"
/>
<el-table-column
label="流程标识"
align="center"
prop="flowKey"
:show-overflow-tooltip="true"
/>
2023-08-10 21:09:49 +08:00
<el-table-column label="流程分类" align="center" prop="category" />
2023-09-05 00:45:38 +08:00
<el-table-column
label="流程名称"
align="center"
width="120"
:show-overflow-tooltip="true"
>
2023-08-10 21:09:49 +08:00
<template slot-scope="scope">
<el-button type="text" @click="handleReadImage(scope.row.deploymentId)">
<span>{{ scope.row.name }}</span>
</el-button>
</template>
</el-table-column>
<el-table-column label="业务表单" align="center" :show-overflow-tooltip="true">
<template slot-scope="scope">
2023-09-05 00:45:38 +08:00
<el-button
v-if="scope.row.formId"
type="text"
@click="handleForm(scope.row.formId)"
>
2023-08-10 21:09:49 +08:00
<span>{{ scope.row.formName }}</span>
</el-button>
<label v-else></label>
</template>
</el-table-column>
<el-table-column label="流程版本" align="center">
<template slot-scope="scope">
2023-09-05 00:45:38 +08:00
<el-tag size="medium">v{{ scope.row.version }}</el-tag>
2023-08-10 21:09:49 +08:00
</template>
</el-table-column>
<el-table-column label="状态" align="center">
<template slot-scope="scope">
<el-tag type="success" v-if="scope.row.suspensionState === 1"></el-tag>
<el-tag type="warning" v-if="scope.row.suspensionState === 2"></el-tag>
</template>
</el-table-column>
2023-09-05 00:45:38 +08:00
<el-table-column
label="部署时间"
align="center"
prop="deploymentTime"
width="180"
/>
<el-table-column
label="操作"
width="250"
fixed="right"
class-name="small-padding fixed-width"
>
2023-08-10 21:09:49 +08:00
<template slot-scope="scope">
2023-09-05 00:45:38 +08:00
<el-button
@click="handleLoadXml(scope.row)"
icon="el-icon-edit-outline"
type="text"
size="small"
>设计</el-button
>
<el-button
@click="handleAddForm(scope.row)"
icon="el-icon-edit-el-icon-s-promotion"
type="text"
size="small"
v-if="scope.row.formId == null"
>配置主表单</el-button
>
<el-button
@click="handleUpdateSuspensionState(scope.row)"
icon="el-icon-video-pause"
type="text"
size="small"
v-if="scope.row.suspensionState === 1"
>挂起</el-button
>
<el-button
@click="handleUpdateSuspensionState(scope.row)"
icon="el-icon-video-play"
type="text"
size="small"
v-if="scope.row.suspensionState === 2"
>激活</el-button
>
<el-button
@click="handleDelete(scope.row)"
icon="el-icon-delete"
type="text"
size="small"
v-hasPermi="['system:deployment:remove']"
>删除</el-button
>
2023-08-10 21:09:49 +08:00
</template>
</el-table-column>
</el-table>
<pagination
2023-09-05 00:45:38 +08:00
v-show="total > 0"
2023-08-10 21:09:49 +08:00
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改流程定义对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="看看" prop="name">
<el-input v-model="form.name" placeholder="请输入看看" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- bpmn20.xml导入对话框 -->
2023-09-05 00:45:38 +08:00
<el-dialog
:title="upload.title"
:visible.sync="upload.open"
width="400px"
append-to-body
>
2023-08-10 21:09:49 +08:00
<el-upload
ref="upload"
:limit="1"
accept=".xml"
:headers="upload.headers"
2023-09-05 00:45:38 +08:00
:action="upload.url + '?name=' + upload.name + '&category=' + upload.category"
2023-08-10 21:09:49 +08:00
:disabled="upload.isUploading"
:on-progress="handleFileUploadProgress"
:on-success="handleFileSuccess"
:auto-upload="false"
drag
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">
将文件拖到此处
<em>点击上传</em>
</div>
<div class="el-upload__tip" slot="tip">
2023-09-05 00:45:38 +08:00
流程名称<el-input v-model="upload.name" />
2023-08-10 21:09:49 +08:00
流程分类
<div>
<!-- <el-input v-model="upload.category"/>-->
<el-select v-model="upload.category" placeholder="请选择流程分类">
<el-option
v-for="dict in dict.type.sys_process_category"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</div>
</div>
2023-09-05 00:45:38 +08:00
<div class="el-upload__tip" style="color: red" slot="tip">
提示仅允许导入bpmn20.xml格式文件
</div>
2023-08-10 21:09:49 +08:00
</el-upload>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFileForm"> </el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
<!-- 流程图 -->
2023-09-05 00:45:38 +08:00
<el-dialog
:title="readImage.title"
:visible.sync="readImage.open"
width="70%"
append-to-body
>
2023-08-10 21:09:49 +08:00
<!-- <el-image :src="readImage.src"></el-image> -->
2023-09-05 00:45:38 +08:00
<flow :flowData="flowData" />
2023-08-10 21:09:49 +08:00
</el-dialog>
<!--表单配置详情-->
<el-dialog :title="formTitle" :visible.sync="formConfOpen" width="50%" append-to-body>
<div class="test-form">
2023-09-05 00:45:38 +08:00
<parser :key="new Date().getTime()" :form-conf="formConf" />
2023-08-10 21:09:49 +08:00
</div>
</el-dialog>
<!--挂载表单-->
2023-09-05 00:45:38 +08:00
<el-dialog
:title="formDeployTitle"
:visible.sync="formDeployOpen"
width="60%"
append-to-body
>
2023-08-10 21:09:49 +08:00
<el-row :gutter="24">
<el-col :span="10" :xs="24">
<el-table
ref="singleTable"
:data="formList"
border
highlight-current-row
@current-change="handleCurrentChange"
2023-09-05 00:45:38 +08:00
style="width: 100%"
>
2023-08-10 21:09:49 +08:00
<el-table-column label="表单编号" align="center" prop="formId" />
<el-table-column label="表单名称" align="center" prop="formName" />
2023-09-05 00:45:38 +08:00
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
2023-08-10 21:09:49 +08:00
<template slot-scope="scope">
2023-09-05 00:45:38 +08:00
<el-button size="mini" type="text" @click="submitFormDeploy(scope.row)"
>确定</el-button
>
2023-08-10 21:09:49 +08:00
</template>
</el-table-column>
</el-table>
<pagination
small
layout="prev, pager, next"
2023-09-05 00:45:38 +08:00
v-show="formTotal > 0"
2023-08-10 21:09:49 +08:00
:total="formTotal"
:page.sync="formQueryParams.pageNum"
:limit.sync="formQueryParams.pageSize"
@pagination="ListFormDeploy"
/>
</el-col>
<el-col :span="14" :xs="24">
<div v-if="currentRow">
<parser :key="new Date().getTime()" :form-conf="currentRow" />
</div>
</el-col>
</el-row>
</el-dialog>
<!-- &lt;!&ndash;流程设计器&ndash;&gt;-->
<!-- <el-dialog-->
<!-- title="流程配置"-->
<!-- :visible.sync="dialogVisible"-->
<!-- :close-on-press-escape="false"-->
<!-- :fullscreen=true-->
<!-- :before-close="handleClose"-->
<!-- append-to-body>-->
<!-- <Model :deployId="deployId"/>-->
<!-- </el-dialog>-->
</div>
</template>
<script>
import {
listDefinition,
updateState,
delDeployment,
addDeployment,
updateDeployment,
exportDeployment,
definitionStart,
2023-09-05 00:45:38 +08:00
flowXmlAndNode,
2023-08-10 21:09:49 +08:00
} from "@/api/flowable/definition";
import { getToken } from "@/utils/auth";
2023-09-05 00:45:38 +08:00
import { getForm, addDeployForm, listForm } from "@/api/flowable/form";
import Parser from "@/components/parser/Parser";
import flow from "@/views/flowable/task/myProcess/send/flow";
import Model from "./model";
2023-08-10 21:09:49 +08:00
export default {
name: "Definition",
2023-09-05 00:45:38 +08:00
dicts: ["sys_process_category"],
2023-08-10 21:09:49 +08:00
components: {
Parser,
flow,
2023-09-05 00:45:38 +08:00
Model,
2023-08-10 21:09:49 +08:00
},
data() {
return {
// 遮罩层
loading: true,
dialogVisible: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 流程定义表格数据
definitionList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
formConfOpen: false,
formTitle: "",
formDeployOpen: false,
formDeployTitle: "",
formList: [],
2023-09-05 00:45:38 +08:00
formTotal: 0,
2023-08-10 21:09:49 +08:00
formConf: {}, // 默认表单数据
2023-09-05 00:45:38 +08:00
readImage: {
2023-08-10 21:09:49 +08:00
open: false,
src: "",
},
// bpmn.xml 导入
upload: {
// 是否显示弹出层xml导入
open: false,
// 弹出层标题xml导入
title: "",
// 是否禁用上传
isUploading: false,
name: null,
category: null,
// 设置上传的请求头部
headers: { Authorization: "Bearer " + getToken() },
// 上传的地址
2023-09-05 00:45:38 +08:00
url: process.env.VUE_APP_BASE_API + "/flowable/definition/import",
2023-08-10 21:09:49 +08:00
},
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
category: null,
key: null,
tenantId: null,
deployTime: null,
derivedFrom: null,
derivedFromRoot: null,
parentDeploymentId: null,
2023-09-05 00:45:38 +08:00
engineVersion: null,
2023-08-10 21:09:49 +08:00
},
2023-09-05 00:45:38 +08:00
formQueryParams: {
2023-08-10 21:09:49 +08:00
pageNum: 1,
pageSize: 10,
},
// 挂载表单到流程实例
2023-09-05 00:45:38 +08:00
formDeployParam: {
2023-08-10 21:09:49 +08:00
formId: null,
2023-09-05 00:45:38 +08:00
deployId: null,
2023-08-10 21:09:49 +08:00
},
2023-09-05 00:45:38 +08:00
deployId: "",
2023-08-10 21:09:49 +08:00
currentRow: null,
// xml
flowData: {},
// 表单参数
form: {},
// 表单校验
2023-09-05 00:45:38 +08:00
rules: {},
2023-08-10 21:09:49 +08:00
};
},
created() {
this.getList();
},
activated() {
const time = this.$route.query.t;
if (time != null) {
this.getList();
}
},
methods: {
/** 查询流程定义列表 */
getList() {
this.loading = true;
2023-09-05 00:45:38 +08:00
listDefinition(this.queryParams).then((response) => {
2023-08-10 21:09:49 +08:00
this.definitionList = response.data.records;
this.total = response.data.total;
this.loading = false;
});
},
handleClose(done) {
2023-09-05 00:45:38 +08:00
this.$confirm("确定要关闭吗?关闭未保存的修改都会丢失?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
done();
})
.catch(() => {});
2023-08-10 21:09:49 +08:00
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
name: null,
category: null,
key: null,
tenantId: null,
deployTime: null,
derivedFrom: null,
derivedFromRoot: null,
parentDeploymentId: null,
2023-09-05 00:45:38 +08:00
engineVersion: null,
2023-08-10 21:09:49 +08:00
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
2023-09-05 00:45:38 +08:00
this.ids = selection.map((item) => item.deploymentId);
this.single = selection.length !== 1;
this.multiple = !selection.length;
2023-08-10 21:09:49 +08:00
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加流程定义";
},
/** 跳转到流程设计页面 */
2023-09-05 00:45:38 +08:00
handleLoadXml(row) {
2023-08-10 21:09:49 +08:00
// this.dialogVisible = true;
// this.deployId = row.deploymentId;
2023-09-05 00:45:38 +08:00
this.$router.push({
path: "/flowable/definition/model",
query: { deployId: row.deploymentId },
});
2023-08-10 21:09:49 +08:00
},
/** 流程图查看 */
2023-09-05 00:45:38 +08:00
handleReadImage(deployId) {
2023-08-10 21:09:49 +08:00
this.readImage.title = "流程图";
this.readImage.open = true;
// this.readImage.src = process.env.VUE_APP_BASE_API + "/flowable/definition/readImage/" + deploymentId;
2023-09-05 00:45:38 +08:00
flowXmlAndNode({ deployId: deployId }).then((res) => {
2023-08-10 21:09:49 +08:00
this.flowData = res.data;
2023-09-05 00:45:38 +08:00
});
2023-08-10 21:09:49 +08:00
},
/** 表单查看 */
2023-09-05 00:45:38 +08:00
handleForm(formId) {
getForm(formId).then((res) => {
2023-08-10 21:09:49 +08:00
this.formTitle = "表单详情";
this.formConfOpen = true;
2023-09-05 00:45:38 +08:00
this.formConf = JSON.parse(res.data.formContent);
});
2023-08-10 21:09:49 +08:00
},
/** 启动流程 */
2023-09-05 00:45:38 +08:00
handleDefinitionStart(row) {
definitionStart(row.id).then((res) => {
2023-08-10 21:09:49 +08:00
this.$modal.msgSuccess(res.msg);
2023-09-05 00:45:38 +08:00
});
2023-08-10 21:09:49 +08:00
},
/** 挂载表单弹框 */
2023-09-05 00:45:38 +08:00
handleAddForm(row) {
this.formDeployParam.deployId = row.deploymentId;
this.ListFormDeploy();
2023-08-10 21:09:49 +08:00
},
/** 挂载表单列表 */
2023-09-05 00:45:38 +08:00
ListFormDeploy() {
listForm(this.formQueryParams).then((res) => {
2023-08-10 21:09:49 +08:00
this.formList = res.rows;
this.formTotal = res.total;
this.formDeployOpen = true;
this.formDeployTitle = "挂载表单";
2023-09-05 00:45:38 +08:00
});
2023-08-10 21:09:49 +08:00
},
// /** 更改挂载表单弹框 */
// handleEditForm(row){
// this.formDeployParam.deployId = row.deploymentId
// const queryParams = {
// pageNum: 1,
// pageSize: 10
// }
// listForm(queryParams).then(res =>{
// this.formList = res.rows;
// this.formDeployOpen = true;
// this.formDeployTitle = "挂载表单";
// })
// },
/** 挂载表单 */
2023-09-05 00:45:38 +08:00
submitFormDeploy(row) {
2023-08-10 21:09:49 +08:00
this.formDeployParam.formId = row.formId;
2023-09-05 00:45:38 +08:00
addDeployForm(this.formDeployParam).then((res) => {
2023-08-10 21:09:49 +08:00
this.$modal.msgSuccess(res.msg);
this.formDeployOpen = false;
this.getList();
2023-09-05 00:45:38 +08:00
});
2023-08-10 21:09:49 +08:00
},
handleCurrentChange(data) {
if (data) {
this.currentRow = JSON.parse(data.formContent);
}
},
/** 挂起/激活流程 */
2023-09-05 00:45:38 +08:00
handleUpdateSuspensionState(row) {
2023-08-10 21:09:49 +08:00
let state = 1;
if (row.suspensionState === 1) {
2023-09-05 00:45:38 +08:00
state = 2;
2023-08-10 21:09:49 +08:00
}
const params = {
deployId: row.deploymentId,
2023-09-05 00:45:38 +08:00
state: state,
};
updateState(params).then((res) => {
2023-08-10 21:09:49 +08:00
this.$modal.msgSuccess(res.msg);
this.getList();
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
2023-09-05 00:45:38 +08:00
const id = row.deploymentId || this.ids;
getDeployment(id).then((response) => {
2023-08-10 21:09:49 +08:00
this.form = response.data;
this.open = true;
this.title = "修改流程定义";
});
},
/** 提交按钮 */
submitForm() {
2023-09-05 00:45:38 +08:00
this.$refs["form"].validate((valid) => {
2023-08-10 21:09:49 +08:00
if (valid) {
if (this.form.id != null) {
2023-09-05 00:45:38 +08:00
updateDeployment(this.form).then((response) => {
2023-08-10 21:09:49 +08:00
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
2023-09-05 00:45:38 +08:00
addDeployment(this.form).then((response) => {
2023-08-10 21:09:49 +08:00
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const deploymentIds = row.deploymentId || this.ids;
2023-09-05 00:45:38 +08:00
this.$confirm(
'是否确认删除流程定义编号为"' + deploymentIds + '"的数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}
)
.then(function () {
return delDeployment(deploymentIds);
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
});
2023-08-10 21:09:49 +08:00
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
2023-09-05 00:45:38 +08:00
this.$confirm("是否确认导出所有流程定义数据项?", "警告", {
2023-08-10 21:09:49 +08:00
confirmButtonText: "确定",
cancelButtonText: "取消",
2023-09-05 00:45:38 +08:00
type: "warning",
2023-08-10 21:09:49 +08:00
})
2023-09-05 00:45:38 +08:00
.then(function () {
return exportDeployment(queryParams);
})
.then((response) => {
this.download(response.msg);
});
2023-08-10 21:09:49 +08:00
},
/** 导入bpmn.xml文件 */
2023-09-05 00:45:38 +08:00
handleImport() {
2023-08-10 21:09:49 +08:00
this.upload.title = "bpmn20.xml文件导入";
this.upload.open = true;
},
// 文件上传中处理
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
// 文件上传成功处理
handleFileSuccess(response, file, fileList) {
this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
this.$message(response.msg);
this.getList();
},
// 提交上传文件
submitFileForm() {
this.$refs.upload.submit();
2023-09-05 00:45:38 +08:00
},
},
2023-08-10 21:09:49 +08:00
};
</script>