From e1ac04b42be89ca26ff5f94c17c4e2eebe52a0a2 Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期二, 03 一月 2023 09:52:39 +0800
Subject: [PATCH] Merge branch 'dev1.0' of ssh://42.193.1.25:29418/sccg_ui into dev1.0
---
src/components/process/index.vue | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/src/components/process/index.vue b/src/components/process/index.vue
index 0f18d78..a142fd9 100644
--- a/src/components/process/index.vue
+++ b/src/components/process/index.vue
@@ -81,7 +81,9 @@
</div>
<div class="desc-content" v-if="active > index">
<div class="desc-content-message">
- {{ item.disposeRecords[0].result || "" }}
+ {{
+ (item.disposeRecords[0] && item.disposeRecords[0].result) || ""
+ }}
</div>
<div class="desc-content-endtime">
{{
@@ -111,9 +113,6 @@
handlePassVo: { workflowConfigSteps: mylist },
baseCase: { state: mystate },
} = this;
- // console.log(this.handlePassVo.workflowConfigSteps[0].name);
- // console.log(mylist);
- console.log(mystate);
if (mystate === 6) {
this.active = 1;
} else if (mystate === 7) {
--
Gitblit v1.8.0