123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <template>
- <div class="app-container">
- <!-- 搜索工作栏 -->
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="流程标识" prop="key">
- <el-input v-model="queryParams.key" placeholder="请输入流程标识" clearable style="width: 240px;" size="small"
- @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="流程名称" prop="name">
- <el-input v-model="queryParams.name" placeholder="请输入流程名称" clearable style="width: 240px;" size="small"
- @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="流程分类" prop="category">
- <el-select v-model="queryParams.category" placeholder="流程分类" clearable size="small" style="width: 240px">
- <el-option v-for="dict in categoryDictDatas" :key="parseInt(dict.value)" :label="dict.label" :value="parseInt(dict.value)"/>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <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" icon="el-icon-plus" size="mini" @click="handleAdd"
- v-hasPermi="['infra:config:create']">新建流程</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <!-- 列表 -->
- <el-table v-loading="loading" :data="list">
- <el-table-column label="流程标识" align="center" prop="key" />
- <el-table-column label="流程名称" align="center" prop="name" />
- <el-table-column label="流程分类" align="center" prop="category">
- <template slot-scope="scope">
- <span>{{ getDictDataLabel(DICT_TYPE.BPM_MODEL_CATEGORY, scope.row.category) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="表单信息" align="center" prop="formId">
- <template slot-scope="scope">
- <el-button v-if="scope.row.formId" type="text" @click="handleFormDetail(scope.row)">
- <span>{{ scope.row.formName }}</span>
- </el-button>
- <label v-else>暂无表单</label>
- </template>
- </el-table-column>
- <el-table-column label="流程版本" align="center" prop="processDefinition.version" />
- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.createTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="240">
- <template slot-scope="scope">
- <el-button size="mini" type="text" icon="el-icon-setting" @click="handleUpdate(scope.row)">设计流程</el-button>
- <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除</el-button>
- <el-button size="mini" type="text" icon="el-icon-thumb" @click="handleDeploy(scope.row)">发布</el-button>
- <!-- TODO 芋艿:流程定义 -->
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页组件 -->
- <pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
- @pagination="getList"/>
- <!-- 流程编辑器 -->
- <el-dialog class="bpmnclass dialogClass" :visible.sync="showBpmnOpen" :before-cancel="cancel" :fullscreen="true">
- <vue-bpmn v-if="showBpmnOpen" product="activiti" @processSave="processSave"
- :bpmnXml="bpmnXML" :bpmnData="bpmnData" @beforeClose="cancel" />
- </el-dialog>
- <!-- 流程表单配置详情 -->
- <el-dialog title="表单详情" :visible.sync="detailOpen" width="50%" append-to-body>
- <div class="test-form">
- <parser :key="new Date().getTime()" :form-conf="detailForm" />
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {deleteModel, deployModel, createModel, updateModel, getModelPage, getModel} from "@/api/bpm/model";
- import VueBpmn from "@/components/bpmn/VueBpmn";
- import {DICT_TYPE, getDictDatas} from "@/utils/dict";
- import {getForm} from "@/api/bpm/form";
- import {decodeFields} from "@/utils/formGenerator";
- import Parser from '@/components/parser/Parser'
- export default {
- name: "model",
- components: {
- Parser,
- VueBpmn
- },
- data() {
- return {
- // 遮罩层
- loading: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 表格数据
- list: [],
- // 查询参数
- queryParams: {
- pageNo: 1,
- pageSize: 10
- },
- // BPMN 数据
- showBpmnOpen: false,
- bpmnXML: null,
- bpmnData: {},
- // 流程表单详情
- detailOpen: false,
- detailForm: {
- fields: []
- },
- // 数据字典
- categoryDictDatas: getDictDatas(DICT_TYPE.BPM_MODEL_CATEGORY),
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询流程模型列表 */
- getList() {
- this.loading = true;
- getModelPage(this.queryParams).then(response => {
- this.list = response.data.list;
- this.total = response.data.total;
- this.loading = false;
- }
- );
- },
- // 表单重置
- reset() {
- this.bpmnData = {}
- this.bpmnXML = ""
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNo = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.resetForm("queryForm");
- this.handleQuery();
- },
- processSave(data) {
- // TODO 芋艿:临时写死的参数
- data.category = '1'
- data.formId = 11
- // 修改的提交
- if (data.id) {
- updateModel(data).then(response => {
- this.msgSuccess("修改成功");
- // 关闭弹窗,刷新列表
- this.showBpmnOpen = false
- this.getList();
- })
- return
- }
- // 添加的提交
- createModel(data).then(response => {
- this.bpmnData.id = response.data
- this.msgSuccess("保存成功");
- // 关闭弹窗,刷新列表
- this.showBpmnOpen = false
- this.getList();
- })
- },
- handleAdd() {
- // 重置 Model 信息
- this.reset()
- // 打开弹窗
- this.showBpmnOpen = true
- },
- cancel() {
- // 打开弹窗
- this.showBpmnOpen = false
- // 重置 Model 信息
- this.reset()
- // 刷新列表
- this.getList()
- },
- handleUpdate(row) {
- // 重置 Model 信息
- this.reset()
- // 获得 Model 信息
- getModel(row.id).then(response => {
- this.bpmnXML = response.data.bpmnXml
- this.bpmnData = response.data
- // 打开弹窗
- this.showBpmnOpen = true
- })
- },
- handleDelete(row) {
- const that = this;
- this.$confirm('是否删除该流程!!', "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function() {
- deleteModel(row.id).then(response => {
- that.getList();
- that.msgSuccess("删除成功");
- })
- })
- },
- handleDeploy(row) {
- const that = this;
- this.$confirm('是否部署该流程!!', "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "success"
- }).then(function() {
- deployModel(row.id).then(response => {
- that.getList();
- that.msgSuccess("部署成功");
- })
- })
- },
- /** 流程表单的详情按钮操作 */
- handleFormDetail(row) {
- getForm(row.formId).then(response => {
- // 设置值
- const data = response.data
- this.detailForm = {
- ...JSON.parse(data.conf),
- fields: decodeFields(data.fields)
- }
- // 弹窗打开
- this.detailOpen = true
- })
- },
- }
- };
- </script>
- <style>
- .el-dialog > .el-dialog__body{
- margin: 0;
- border: 0;
- }
- .bpmn-viewer-header{
- background: white;
- }
- .v-modal{
- z-index: 2000!important;
- }
- .dialogClass{
- padding: 0 ;
- }
- </style>
|