Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Wecube Platform
Commits
ad5e8ce2
Commit
ad5e8ce2
authored
5 years ago
by
pobu168
Browse files
Options
Download
Email Patches
Plain Diff
#1474 Fix data echo
parent
79912b71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wecube-portal/src/pages/implementation/workflow-execution.vue
+3
-5
...be-portal/src/pages/implementation/workflow-execution.vue
with
3 additions
and
5 deletions
+3
-5
wecube-portal/src/pages/implementation/workflow-execution.vue
+
3
-
5
View file @
ad5e8ce2
...
...
@@ -298,7 +298,6 @@ export default {
console
.
log
(
'
destroyed
'
,
'
start clearInterval
'
,
this
.
timer
)
clearInterval
(
this
.
timer
)
console
.
log
(
'
destroyed
'
,
'
end clearInterval
'
,
this
.
timer
)
this
.
timer
=
null
},
methods
:
{
async
getDetail
(
row
)
{
...
...
@@ -375,7 +374,8 @@ export default {
}
},
async
getTargetOptions
()
{
if
(
!
(
this
.
flowData
.
rootEntity
||
!
this
.
flowData
.
entityTypeId
))
return
// if (!(this.flowData.rootEntity || !this.flowData.entityTypeId)) return
if
(
!
this
.
flowData
.
rootEntity
&&
!
this
.
flowData
.
entityTypeId
)
return
let
pkgName
=
''
let
entityName
=
''
if
(
this
.
flowData
.
rootEntity
)
{
...
...
@@ -671,7 +671,7 @@ export default {
if
(
this
.
timer
===
null
)
{
this
.
getStatus
()
}
if
(
this
.
timer
!=
null
)
{
if
(
this
.
timer
!=
=
null
)
{
this
.
stop
()
}
this
.
timer
=
setInterval
(()
=>
{
...
...
@@ -682,7 +682,6 @@ export default {
stop
()
{
console
.
log
(
'
stop
'
,
'
start clearInterval
'
,
this
.
timer
)
clearInterval
(
this
.
timer
)
this
.
timer
=
null
console
.
log
(
'
stop
'
,
'
end clearInterval
'
,
this
.
timer
)
},
async
getStatus
()
{
...
...
@@ -705,7 +704,6 @@ export default {
},
processInstance
()
{
console
.
log
(
'
processInstance
'
,
'
start set timer
'
,
this
.
timer
)
this
.
timer
=
null
this
.
start
()
console
.
log
(
'
processInstance
'
,
'
end set timer
'
,
this
.
timer
)
},
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment