From 5d2605fcaea396c3a9db1cc7e2d47f8128088830 Mon Sep 17 00:00:00 2001
From: LesanOuO <1960681385@qq.com>
Date: Mon, 27 Jan 2025 09:34:15 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BB=A3=E7=A0=81=E8=AF=84=E5=AE=A1?=
=?UTF-8?q?=E4=BF=AE=E5=A4=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../bpm/processInstance/report/index.vue | 55 ++++++++++++++++++-
1 file changed, 52 insertions(+), 3 deletions(-)
diff --git a/src/views/bpm/processInstance/report/index.vue b/src/views/bpm/processInstance/report/index.vue
index a7ab685c..939c0bde 100644
--- a/src/views/bpm/processInstance/report/index.vue
+++ b/src/views/bpm/processInstance/report/index.vue
@@ -125,7 +125,27 @@
{{ scope.row.formVariables[item.field] ?? '' }}
-
+
+
+
+ 详情
+
+
+ 取消
+
+
+
{
}
/** 重置按钮操作 */
-// TODO @lesan:动态表单的 search ,无法重置的样子
const resetQuery = () => {
queryFormRef.value.resetFields()
- queryFormRef.value.formFieldsParams = {}
+ queryParams.formFieldsParams = {}
handleQuery()
}
+/** 查看详情 */
+const handleDetail = (row) => {
+ router.push({
+ name: 'BpmProcessInstanceDetail',
+ query: {
+ id: row.id
+ }
+ })
+}
+
+/** 取消按钮操作 */
+const handleCancel = async (row) => {
+ // 二次确认
+ const { value } = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
+ confirmButtonText: t('common.ok'),
+ cancelButtonText: t('common.cancel'),
+ inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
+ inputErrorMessage: '取消原因不能为空'
+ })
+ // 发起取消
+ await ProcessInstanceApi.cancelProcessInstanceByAdmin(row.id, value)
+ message.success('取消成功')
+ // 刷新列表
+ await getList()
+}
+
/** 初始化 **/
onMounted(async () => {
// 获取流程定义,用于 table column 的展示