update 优化流程实例删除
This commit is contained in:
parent
bb9eb532bd
commit
7f14f94069
@ -54,9 +54,7 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button link type="primary" icon="ScaleToOriginal" @click="clickDeploy(scope.row.id, scope.row.key)">
|
<el-button link type="primary" icon="ScaleToOriginal" @click="clickDeploy(scope.row.id, scope.row.key)"> 流程部署 </el-button>
|
||||||
流程部署
|
|
||||||
</el-button>
|
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
||||||
@ -96,20 +94,20 @@
|
|||||||
<script lang="ts" setup name="Model">
|
<script lang="ts" setup name="Model">
|
||||||
import { listModel, addModel, delModel, modelDeploy } from '@/api/workflow/model';
|
import { listModel, addModel, delModel, modelDeploy } from '@/api/workflow/model';
|
||||||
import { ModelQuery, ModelForm } from '@/api/workflow/model/types';
|
import { ModelQuery, ModelForm } from '@/api/workflow/model/types';
|
||||||
import { ComponentInternalInstance } from "vue";
|
import { ComponentInternalInstance } from 'vue';
|
||||||
import Design from "./design.vue";
|
import Design from './design.vue';
|
||||||
|
|
||||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
|
||||||
const designModel = ref<InstanceType<typeof Design>>();
|
const designModel = ref<InstanceType<typeof Design>>();
|
||||||
const formRef = ref(ElForm);
|
const formRef = ref(ElForm);
|
||||||
const queryFormRef = ref(ElForm)
|
const queryFormRef = ref(ElForm);
|
||||||
|
|
||||||
const buttonLoading = ref(false);
|
const buttonLoading = ref(false);
|
||||||
const loading = ref(true)
|
const loading = ref(true);
|
||||||
const ids = ref<Array<string | number>>([])
|
const ids = ref<Array<string | number>>([]);
|
||||||
const single = ref(true)
|
const single = ref(true);
|
||||||
const multiple = ref(true)
|
const multiple = ref(true);
|
||||||
const showSearch = ref(true);
|
const showSearch = ref(true);
|
||||||
const total = ref(0);
|
const total = ref(0);
|
||||||
const modelList = ref<Record<string, any>>([]);
|
const modelList = ref<Record<string, any>>([]);
|
||||||
@ -123,7 +121,7 @@ const initFormData: ModelForm = {
|
|||||||
name: '',
|
name: '',
|
||||||
key: '',
|
key: '',
|
||||||
description: ''
|
description: ''
|
||||||
}
|
};
|
||||||
const data = reactive<PageData<ModelForm, ModelQuery>>({
|
const data = reactive<PageData<ModelForm, ModelQuery>>({
|
||||||
form: { ...initFormData },
|
form: { ...initFormData },
|
||||||
queryParams: {
|
queryParams: {
|
||||||
@ -133,17 +131,13 @@ const data = reactive<PageData<ModelForm, ModelQuery>>({
|
|||||||
key: ''
|
key: ''
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
name: [
|
name: [{ required: true, message: '模型不能为空', trigger: 'blur' }],
|
||||||
{ required: true, message: "模型不能为空", trigger: "blur" }
|
key: [{ required: true, message: 'key不能为空', trigger: 'blur' }]
|
||||||
],
|
|
||||||
key: [
|
|
||||||
{ required: true, message: "key不能为空", trigger: "blur" }
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
const { queryParams, form, rules } = toRefs(data);
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
const modelId = ref<string>('')
|
const modelId = ref<string>('');
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getList();
|
getList();
|
||||||
@ -159,13 +153,13 @@ const resetQuery = () => {
|
|||||||
queryParams.value.pageNum = 1;
|
queryParams.value.pageNum = 1;
|
||||||
queryParams.value.pageSize = 10;
|
queryParams.value.pageSize = 10;
|
||||||
handleQuery();
|
handleQuery();
|
||||||
}
|
};
|
||||||
// 多选框选中数据
|
// 多选框选中数据
|
||||||
const handleSelectionChange = (selection: any) => {
|
const handleSelectionChange = (selection: any) => {
|
||||||
ids.value = selection.map((item: any) => item.id);
|
ids.value = selection.map((item: any) => item.id);
|
||||||
single.value = selection.length !== 1;
|
single.value = selection.length !== 1;
|
||||||
multiple.value = !selection.length;
|
multiple.value = !selection.length;
|
||||||
}
|
};
|
||||||
//分页
|
//分页
|
||||||
const getList = () => {
|
const getList = () => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
@ -174,13 +168,13 @@ const getList = () => {
|
|||||||
total.value = resp.total;
|
total.value = resp.total;
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
const handleDelete = async (row: any) => {
|
const handleDelete = async (row: any) => {
|
||||||
const id = row.id || ids;
|
const id = row.id || ids.value;
|
||||||
await proxy?.$modal.confirm('是否确认删除模型id为"' + id + '"的数据项?');
|
await proxy?.$modal.confirm('是否确认删除模型id为【' + id + '】的数据项?');
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
await delModel(id).finally(() => loading.value = false);
|
await delModel(id).finally(() => (loading.value = false));
|
||||||
getList();
|
getList();
|
||||||
proxy?.$modal.msgSuccess('删除成功');
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
};
|
};
|
||||||
@ -188,7 +182,7 @@ const handleDelete = async (row: any) => {
|
|||||||
const clickDeploy = async (id: string, key: string) => {
|
const clickDeploy = async (id: string, key: string) => {
|
||||||
await proxy?.$modal.confirm('是否部署模型key为【' + key + '】流程?');
|
await proxy?.$modal.confirm('是否部署模型key为【' + key + '】流程?');
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
await modelDeploy(id).finally(() => loading.value = false);
|
await modelDeploy(id).finally(() => (loading.value = false));
|
||||||
getList();
|
getList();
|
||||||
proxy?.$modal.msgSuccess('部署成功');
|
proxy?.$modal.msgSuccess('部署成功');
|
||||||
};
|
};
|
||||||
@ -214,13 +208,13 @@ const submitForm = () => {
|
|||||||
const cancel = () => {
|
const cancel = () => {
|
||||||
reset();
|
reset();
|
||||||
dialog.visible = false;
|
dialog.visible = false;
|
||||||
}
|
};
|
||||||
|
|
||||||
/** 表单重置 */
|
/** 表单重置 */
|
||||||
const reset = () => {
|
const reset = () => {
|
||||||
form.value = {...initFormData};
|
form.value = { ...initFormData };
|
||||||
formRef.value.resetFields();
|
formRef.value.resetFields();
|
||||||
}
|
};
|
||||||
|
|
||||||
// 打开设计流程
|
// 打开设计流程
|
||||||
const clickDesign = (id: string) => {
|
const clickDesign = (id: string) => {
|
||||||
|
@ -30,6 +30,9 @@
|
|||||||
<el-card shadow="hover">
|
<el-card shadow="hover">
|
||||||
<template #header>
|
<template #header>
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">删除</el-button>
|
||||||
|
</el-col>
|
||||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="handleQuery"></right-toolbar>
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="handleQuery"></right-toolbar>
|
||||||
</el-row>
|
</el-row>
|
||||||
</template>
|
</template>
|
||||||
@ -37,6 +40,7 @@
|
|||||||
<el-table v-loading="loading" :data="processInstanceList" @selection-change="handleSelectionChange">
|
<el-table v-loading="loading" :data="processInstanceList" @selection-change="handleSelectionChange">
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<el-table-column fixed align="center" type="index" label="序号" width="50"></el-table-column>
|
<el-table-column fixed align="center" type="index" label="序号" width="50"></el-table-column>
|
||||||
|
<el-table-column fixed align="center" prop="id" label="id"></el-table-column>
|
||||||
<el-table-column fixed align="center" prop="processDefinitionName" label="流程定义名称"></el-table-column>
|
<el-table-column fixed align="center" prop="processDefinitionName" label="流程定义名称"></el-table-column>
|
||||||
<el-table-column fixed align="center" prop="processDefinitionKey" label="流程定义KEY"></el-table-column>
|
<el-table-column fixed align="center" prop="processDefinitionKey" label="流程定义KEY"></el-table-column>
|
||||||
<el-table-column align="center" prop="processDefinitionVersion" label="版本号" width="90">
|
<el-table-column align="center" prop="processDefinitionVersion" label="版本号" width="90">
|
||||||
@ -56,7 +60,7 @@
|
|||||||
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleApprovalRecord(scope.row)">审批记录</el-button>
|
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleApprovalRecord(scope.row)">审批记录</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleDeleteRunning(scope.row)">删除</el-button>
|
<el-button type="text" size="small" icon="el-icon-thumb" @click="handleDelete(scope.row)">删除</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="10" class="mb8" v-if="tab === 'running'">
|
<el-row :gutter="10" class="mb8" v-if="tab === 'running'">
|
||||||
@ -178,14 +182,15 @@ const getProcessInstanceFinishList = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
const handleDeleteRunning = async (row: any) => {
|
const handleDelete = async (row: any) => {
|
||||||
await proxy?.$modal.confirm('是否确认删除业务id为【' + row.businessKey + '】的数据项?');
|
const id = row.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除id为【' + id + '】的数据项?');
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
if ('running' === tab.value) {
|
if ('running' === tab.value) {
|
||||||
await deleteRuntimeProcessAndHisInst(row.id).finally(() => (loading.value = false));
|
await deleteRuntimeProcessAndHisInst(id).finally(() => (loading.value = false));
|
||||||
getProcessInstanceRunningList();
|
getProcessInstanceRunningList();
|
||||||
} else {
|
} else {
|
||||||
await deleteFinishProcessAndHisInst(row.id).finally(() => (loading.value = false));
|
await deleteFinishProcessAndHisInst(id).finally(() => (loading.value = false));
|
||||||
getProcessInstanceFinishList();
|
getProcessInstanceFinishList();
|
||||||
}
|
}
|
||||||
proxy?.$modal.msgSuccess('删除成功');
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user