2021-11-18 12:06:24 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
2022-01-01 08:54:37 +08:00
|
|
|
|
|
|
|
|
|
<!-- 搜索工作栏 -->
|
2021-11-18 12:06:24 +08:00
|
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
2022-01-02 08:49:35 +08:00
|
|
|
|
<el-form-item label="流程标识" prop="key">
|
|
|
|
|
<el-input v-model="queryParams.key" placeholder="请输入流程标识" clearable style="width: 240px;" size="small"
|
2021-11-18 12:06:24 +08:00
|
|
|
|
@keyup.enter.native="handleQuery"/>
|
|
|
|
|
</el-form-item>
|
2022-01-02 08:49:35 +08:00
|
|
|
|
<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>
|
2021-11-18 12:06:24 +08:00
|
|
|
|
<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>
|
2022-01-01 08:54:37 +08:00
|
|
|
|
|
|
|
|
|
<!-- 操作工具栏 -->
|
2021-11-18 12:06:24 +08:00
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
2022-01-01 19:31:16 +08:00
|
|
|
|
<el-button type="primary" icon="el-icon-plus" size="mini" @click="handleAdd"
|
2022-01-03 19:03:54 +08:00
|
|
|
|
v-hasPermi="['bpm:model:create']">新建流程模型</el-button>
|
2021-11-18 12:06:24 +08:00
|
|
|
|
</el-col>
|
2022-01-03 18:46:00 +08:00
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="info" icon="el-icon-upload2" size="mini" @click="handleImport"
|
2022-01-03 19:03:54 +08:00
|
|
|
|
v-hasPermi="['bpm:model:import']">导入流程模型</el-button>
|
2022-01-03 18:46:00 +08:00
|
|
|
|
</el-col>
|
2021-11-18 12:06:24 +08:00
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
2022-01-01 08:54:37 +08:00
|
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
2021-11-18 12:06:24 +08:00
|
|
|
|
<el-table v-loading="loading" :data="list">
|
2022-01-01 08:54:37 +08:00
|
|
|
|
<el-table-column label="流程标识" align="center" prop="key" />
|
2022-01-03 04:31:48 +08:00
|
|
|
|
<el-table-column label="流程名称" align="center" prop="name" width="200">
|
2022-01-03 02:41:24 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click="handleBpmnDetail(scope.row)">
|
|
|
|
|
<span>{{ scope.row.name }}</span>
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2022-01-03 04:31:48 +08:00
|
|
|
|
<el-table-column label="流程分类" align="center" prop="category" width="100">
|
2022-01-02 08:49:35 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ getDictDataLabel(DICT_TYPE.BPM_MODEL_CATEGORY, scope.row.category) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2022-01-02 12:56:34 +08:00
|
|
|
|
<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>
|
2022-01-01 08:54:37 +08:00
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
2021-11-18 18:23:56 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2022-01-03 04:31:48 +08:00
|
|
|
|
<el-table-column label="最新部署的流程定义" align="center">
|
|
|
|
|
<el-table-column label="流程版本" align="center" prop="processDefinition.version" width="80">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag size="medium" v-if="scope.row.processDefinition">v{{ scope.row.processDefinition.version }}</el-tag>
|
|
|
|
|
<el-tag size="medium" type="warning" v-else>未部署</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="激活状态" align="center" prop="processDefinition.version" width="80">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-switch v-if="scope.row.processDefinition" v-model="scope.row.processDefinition.suspensionState"
|
2022-01-03 12:26:04 +08:00
|
|
|
|
:active-value="1" :inactive-value="2" @change="handleChangeState(scope.row)" />
|
2022-01-03 04:31:48 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2022-01-03 11:08:47 +08:00
|
|
|
|
<el-table-column label="部署时间" align="center" prop="deploymentTime" width="180">
|
2022-01-03 04:31:48 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span v-if="scope.row.processDefinition">{{ parseTime(scope.row.processDefinition.deploymentTime) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" align="center" width="300">
|
2021-11-18 18:23:56 +08:00
|
|
|
|
<template slot-scope="scope">
|
2022-01-03 19:03:54 +08:00
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-setting" @click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['bpm:model:update']">设计流程</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-thumb" @click="handleDeploy(scope.row)"
|
|
|
|
|
v-hasPermi="['bpm:model:deploy']">发布流程</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-ice-cream-round" @click="handleDefinitionList(scope.row)"
|
|
|
|
|
v-hasPermi="['bpm:model:query']">流程定义</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['bpm:model:delete']">删除</el-button>
|
2021-11-18 18:23:56 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2021-11-18 12:06:24 +08:00
|
|
|
|
</el-table>
|
2022-01-01 19:31:16 +08:00
|
|
|
|
<!-- 分页组件 -->
|
2021-11-18 12:06:24 +08:00
|
|
|
|
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"/>
|
2022-01-01 18:13:00 +08:00
|
|
|
|
|
2022-01-02 12:56:34 +08:00
|
|
|
|
<!-- 流程表单配置详情 -->
|
|
|
|
|
<el-dialog title="表单详情" :visible.sync="detailOpen" width="50%" append-to-body>
|
2022-01-03 02:41:24 +08:00
|
|
|
|
<parser :key="new Date().getTime()" :form-conf="detailForm" />
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- 流程模型图的预览 -->
|
|
|
|
|
<el-dialog title="流程图" :visible.sync="showBpmnOpen" width="80%" append-to-body>
|
|
|
|
|
<my-process-viewer key="designer" v-model="bpmnXML" v-bind="bpmnControlForm" />
|
2022-01-02 12:56:34 +08:00
|
|
|
|
</el-dialog>
|
2022-01-03 18:46:00 +08:00
|
|
|
|
|
|
|
|
|
<!-- 用户导入对话框 -->
|
|
|
|
|
<el-dialog title="导入流程模型" :visible.sync="upload.open" width="400px" append-to-body>
|
|
|
|
|
<el-upload
|
|
|
|
|
ref="upload"
|
|
|
|
|
:limit="1"
|
|
|
|
|
accept=".bpmn, .xml"
|
|
|
|
|
:headers="upload.headers"
|
|
|
|
|
:action="upload.url"
|
|
|
|
|
:disabled="upload.isUploading"
|
|
|
|
|
:on-progress="handleFileUploadProgress"
|
|
|
|
|
:on-success="handleFileSuccess"
|
|
|
|
|
:auto-upload="false"
|
|
|
|
|
name="bpmnFile"
|
|
|
|
|
:data="upload.form"
|
|
|
|
|
drag
|
|
|
|
|
>
|
|
|
|
|
<i class="el-icon-upload"></i>
|
|
|
|
|
<div class="el-upload__text">
|
|
|
|
|
将文件拖到此处,或
|
|
|
|
|
<em>点击上传</em>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“bpm”或“xml”格式文件!</div>
|
|
|
|
|
|
|
|
|
|
<!-- <div class="el-upload__tip" slot="tip">-->
|
|
|
|
|
<!-- 流程名称:<el-input v-model="upload.name"/>-->
|
|
|
|
|
<!-- 流程分类:<el-input v-model="upload.category"/>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<div class="el-upload__tip" slot="tip">
|
|
|
|
|
<el-form ref="uploadForm" size="mini" label-width="90px" :model="upload.form" :rules="upload.rules" @submit.native.prevent>
|
|
|
|
|
<el-form-item label="流程标识" prop="key">
|
|
|
|
|
<el-input v-model="upload.form.key" placeholder="请输入流标标识" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="流程名称" prop="name">
|
|
|
|
|
<el-input v-model="upload.form.name" placeholder="请输入流程名称" clearable />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="流程分类" prop="category">
|
|
|
|
|
<el-select v-model="upload.form.category" placeholder="请选择流程分类" clearable style="width: 100%">
|
|
|
|
|
<el-option v-for="dict in categoryDictDatas" :key="dict.value" :label="dict.label" :value="dict.value"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="流程表单" prop="formId">
|
|
|
|
|
<el-select v-model="upload.form.formId" placeholder="请选择流程表单,非必选哟!" clearable style="width: 100%">
|
|
|
|
|
<el-option v-for="form in forms" :key="form.id" :label="form.name" :value="form.id"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="流程描述" prop="description">
|
|
|
|
|
<el-input type="textarea" v-model="upload.form.description" clearable />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitFileForm">确 定</el-button>
|
|
|
|
|
<el-button @click="uploadClose">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
2021-11-18 12:06:24 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-01-03 12:26:04 +08:00
|
|
|
|
import {deleteModel, deployModel, getModelPage, getModel, updateModelState} from "@/api/bpm/model";
|
2022-01-02 08:49:35 +08:00
|
|
|
|
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
2022-01-03 18:46:00 +08:00
|
|
|
|
import {getForm, getSimpleForms} from "@/api/bpm/form";
|
2022-01-02 12:56:34 +08:00
|
|
|
|
import {decodeFields} from "@/utils/formGenerator";
|
|
|
|
|
import Parser from '@/components/parser/Parser'
|
2022-01-03 18:46:00 +08:00
|
|
|
|
import {getToken} from "@/utils/auth";
|
|
|
|
|
import {getBaseHeader} from "@/utils/request";
|
|
|
|
|
import {addUser, updateUser} from "@/api/system/user";
|
2021-11-18 12:06:24 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "model",
|
2022-01-02 12:56:34 +08:00
|
|
|
|
components: {
|
2022-01-03 01:12:36 +08:00
|
|
|
|
Parser
|
2022-01-02 12:56:34 +08:00
|
|
|
|
},
|
2021-11-18 12:06:24 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 总条数
|
|
|
|
|
total: 0,
|
|
|
|
|
// 表格数据
|
|
|
|
|
list: [],
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10
|
2022-01-01 18:13:00 +08:00
|
|
|
|
},
|
2022-01-02 08:49:35 +08:00
|
|
|
|
|
2022-01-01 18:13:00 +08:00
|
|
|
|
// BPMN 数据
|
2022-01-01 19:31:16 +08:00
|
|
|
|
showBpmnOpen: false,
|
2022-01-01 18:13:00 +08:00
|
|
|
|
bpmnXML: null,
|
2022-01-03 02:41:24 +08:00
|
|
|
|
bpmnControlForm: {
|
|
|
|
|
prefix: "activiti"
|
|
|
|
|
},
|
2022-01-02 08:49:35 +08:00
|
|
|
|
|
2022-01-02 12:56:34 +08:00
|
|
|
|
// 流程表单详情
|
|
|
|
|
detailOpen: false,
|
|
|
|
|
detailForm: {
|
|
|
|
|
fields: []
|
|
|
|
|
},
|
|
|
|
|
|
2022-01-03 18:46:00 +08:00
|
|
|
|
// 流程导入参数
|
|
|
|
|
upload: {
|
|
|
|
|
// 是否显示弹出层(用户导入)
|
|
|
|
|
open: false,
|
|
|
|
|
// 是否禁用上传
|
|
|
|
|
isUploading: false,
|
|
|
|
|
// 设置上传的请求头部
|
|
|
|
|
headers: getBaseHeader(),
|
|
|
|
|
// 上传的地址
|
|
|
|
|
url: process.env.VUE_APP_BASE_API + '/api/' + "/bpm/model/import",
|
|
|
|
|
// 表单
|
|
|
|
|
form: {},
|
|
|
|
|
// 校验规则
|
|
|
|
|
rules: {
|
|
|
|
|
key: [{ required: true, message: "流程标识不能为空", trigger: "blur" }],
|
|
|
|
|
name: [{ required: true, message: "流程名称不能为空", trigger: "blur" }],
|
|
|
|
|
category: [{ required: true, message: "流程分类不能为空", trigger: "blur" }],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
// 流程表单的下拉框的数据
|
|
|
|
|
forms: [],
|
|
|
|
|
|
2022-01-02 08:49:35 +08:00
|
|
|
|
// 数据字典
|
|
|
|
|
categoryDictDatas: getDictDatas(DICT_TYPE.BPM_MODEL_CATEGORY),
|
2021-11-18 12:06:24 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
2022-01-03 18:46:00 +08:00
|
|
|
|
// 获得流程表单的下拉框的数据
|
|
|
|
|
getSimpleForms().then(response => {
|
|
|
|
|
this.forms = response.data
|
|
|
|
|
})
|
2021-11-18 12:06:24 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2022-01-01 19:31:16 +08:00
|
|
|
|
/** 查询流程模型列表 */
|
2021-11-18 12:06:24 +08:00
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
2022-01-01 19:31:16 +08:00
|
|
|
|
getModelPage(this.queryParams).then(response => {
|
2021-11-18 12:06:24 +08:00
|
|
|
|
this.list = response.data.list;
|
|
|
|
|
this.total = response.data.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
2022-01-01 19:31:16 +08:00
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.bpmnData = {}
|
|
|
|
|
this.bpmnXML = ""
|
2021-11-18 12:06:24 +08:00
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.queryParams.pageNo = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.dateRange = [];
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
2022-01-03 01:12:36 +08:00
|
|
|
|
/** 新增按钮操作 */
|
2022-01-01 19:31:16 +08:00
|
|
|
|
handleAdd() {
|
2022-01-03 01:12:36 +08:00
|
|
|
|
this.$router.push({
|
|
|
|
|
path:"/bpm/manager/model/edit"
|
|
|
|
|
});
|
2021-11-18 18:23:56 +08:00
|
|
|
|
},
|
2022-01-03 01:12:36 +08:00
|
|
|
|
/** 修改按钮操作 */
|
2022-01-01 19:31:16 +08:00
|
|
|
|
handleUpdate(row) {
|
2022-01-03 01:12:36 +08:00
|
|
|
|
this.$router.push({
|
|
|
|
|
path:"/bpm/manager/model/edit",
|
|
|
|
|
query:{
|
|
|
|
|
modelId: row.id
|
|
|
|
|
}
|
|
|
|
|
});
|
2021-11-18 18:23:56 +08:00
|
|
|
|
},
|
2022-01-03 01:12:36 +08:00
|
|
|
|
/** 删除按钮操作 */
|
2022-01-01 22:03:17 +08:00
|
|
|
|
handleDelete(row) {
|
2021-11-18 18:23:56 +08:00
|
|
|
|
const that = this;
|
|
|
|
|
this.$confirm('是否删除该流程!!', "警告", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning"
|
|
|
|
|
}).then(function() {
|
2022-01-01 19:31:16 +08:00
|
|
|
|
deleteModel(row.id).then(response => {
|
2021-11-18 18:23:56 +08:00
|
|
|
|
that.getList();
|
|
|
|
|
that.msgSuccess("删除成功");
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
},
|
2022-01-03 01:12:36 +08:00
|
|
|
|
/** 部署按钮操作 */
|
2022-01-01 22:03:17 +08:00
|
|
|
|
handleDeploy(row) {
|
2021-11-18 18:23:56 +08:00
|
|
|
|
const that = this;
|
|
|
|
|
this.$confirm('是否部署该流程!!', "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "success"
|
|
|
|
|
}).then(function() {
|
2022-01-01 22:03:17 +08:00
|
|
|
|
deployModel(row.id).then(response => {
|
2021-11-18 18:23:56 +08:00
|
|
|
|
that.getList();
|
|
|
|
|
that.msgSuccess("部署成功");
|
|
|
|
|
})
|
|
|
|
|
})
|
2022-01-02 12:56:34 +08:00
|
|
|
|
},
|
|
|
|
|
/** 流程表单的详情按钮操作 */
|
|
|
|
|
handleFormDetail(row) {
|
|
|
|
|
getForm(row.formId).then(response => {
|
|
|
|
|
// 设置值
|
|
|
|
|
const data = response.data
|
|
|
|
|
this.detailForm = {
|
|
|
|
|
...JSON.parse(data.conf),
|
|
|
|
|
fields: decodeFields(data.fields)
|
|
|
|
|
}
|
|
|
|
|
// 弹窗打开
|
|
|
|
|
this.detailOpen = true
|
|
|
|
|
})
|
|
|
|
|
},
|
2022-01-03 02:41:24 +08:00
|
|
|
|
/** 流程图的详情按钮操作 */
|
|
|
|
|
handleBpmnDetail(row) {
|
|
|
|
|
getModel(row.id).then(response => {
|
|
|
|
|
this.bpmnXML = response.data.bpmnXml
|
|
|
|
|
// 弹窗打开
|
|
|
|
|
this.showBpmnOpen = true
|
|
|
|
|
})
|
|
|
|
|
},
|
2022-01-03 05:41:05 +08:00
|
|
|
|
/** 跳转流程定义的列表 */
|
|
|
|
|
handleDefinitionList(row) {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path:"/bpm/manager/definition",
|
|
|
|
|
query:{
|
|
|
|
|
key: row.key
|
|
|
|
|
}
|
|
|
|
|
});
|
2022-01-03 12:26:04 +08:00
|
|
|
|
},
|
|
|
|
|
/** 更新状态操作 */
|
|
|
|
|
handleChangeState(row) {
|
|
|
|
|
const id = row.id;
|
|
|
|
|
let state = row.processDefinition.suspensionState;
|
|
|
|
|
let statusState = state === 1 ? '激活' : '挂起';
|
|
|
|
|
this.$confirm('是否确认' + statusState + '流程名字为"' + row.name + '"的数据项?', "警告", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning"
|
|
|
|
|
}).then(function() {
|
|
|
|
|
return updateModelState(id, state);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.msgSuccess(statusState + "成功");
|
|
|
|
|
})
|
|
|
|
|
},
|
2022-01-03 18:46:00 +08:00
|
|
|
|
/** 导入按钮操作 */
|
|
|
|
|
handleImport() {
|
|
|
|
|
this.upload.open = true;
|
|
|
|
|
},
|
|
|
|
|
// 文件上传中处理
|
|
|
|
|
handleFileUploadProgress(event, file, fileList) {
|
|
|
|
|
this.upload.isUploading = true;
|
|
|
|
|
},
|
|
|
|
|
// 文件上传成功处理
|
|
|
|
|
handleFileSuccess(response, file, fileList) {
|
|
|
|
|
if (response.code !== 0) {
|
|
|
|
|
this.msgError(response.msg)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 重置表单
|
|
|
|
|
this.uploadClose();
|
|
|
|
|
// 提示,并刷新
|
|
|
|
|
this.msgSuccess("上传成功!请点击【设计流程】按钮,进行编辑保存后,才可以进行【发布流程】");
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
uploadClose() {
|
|
|
|
|
// 关闭弹窗
|
|
|
|
|
this.upload.open = false;
|
|
|
|
|
// 重置上传状态和文件
|
|
|
|
|
this.upload.isUploading = false;
|
|
|
|
|
this.$refs.upload.clearFiles();
|
|
|
|
|
// 重置表单
|
|
|
|
|
this.upload.form = {};
|
|
|
|
|
this.resetForm("uploadForm");
|
|
|
|
|
},
|
|
|
|
|
/** 提交上传文件 */
|
|
|
|
|
submitFileForm() {
|
|
|
|
|
this.$refs["uploadForm"].validate(valid => {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.$refs.upload.submit();
|
|
|
|
|
})
|
|
|
|
|
},
|
2021-11-18 12:06:24 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
2022-01-03 02:41:24 +08:00
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.my-process-designer {
|
|
|
|
|
height: calc(100vh - 200px);
|
|
|
|
|
}
|
|
|
|
|
</style>
|