From 05e6f207c80526bbe87bd75c5d53925621b81163 Mon Sep 17 00:00:00 2001 From: Jerry <707344974@qq.com> Date: Wed, 24 Jul 2024 23:17:23 +0800 Subject: [PATCH] commit --- .../pages/workflow/handlerFlowTask/index.vue | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/OrangeFormsOpen-VUE3/src/pages/workflow/handlerFlowTask/index.vue b/OrangeFormsOpen-VUE3/src/pages/workflow/handlerFlowTask/index.vue index 1e4d8eb3..917a324f 100644 --- a/OrangeFormsOpen-VUE3/src/pages/workflow/handlerFlowTask/index.vue +++ b/OrangeFormsOpen-VUE3/src/pages/workflow/handlerFlowTask/index.vue @@ -79,24 +79,24 @@ const isOnlineForm = computed(() => { }); const isDraft = computed(() => { - return typeof dialogParams.isDraft === 'string' - ? dialogParams.isDraft === 'true' - : dialogParams.isDraft; + return typeof dialogParams.value.isDraft === 'string' + ? dialogParams.value.isDraft === 'true' + : dialogParams.value.isDraft; }); const isPreview = computed(() => { - return typeof dialogParams.isPreview === 'string' - ? dialogParams.isPreview === 'true' - : dialogParams.isPreview; + return typeof dialogParams.value.isPreview === 'string' + ? dialogParams.value.isPreview === 'true' + : dialogParams.value.isPreview; }); const isRuntime = computed(() => { - return typeof dialogParams.isRuntime === 'string' - ? dialogParams.isRuntime === 'true' - : dialogParams.isRuntime; + return typeof dialogParams.value.isRuntime === 'string' + ? dialogParams.value.isRuntime === 'true' + : dialogParams.value.isRuntime; }); const readOnly = computed(() => { - return typeof dialogParams.readOnly === 'string' - ? dialogParams.readOnly === 'true' - : dialogParams.readOnly; + return typeof dialogParams.value.readOnly === 'string' + ? dialogParams.value.readOnly === 'true' + : dialogParams.value.readOnly; }); const getFlowInfo = computed(() => {