Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
yecl
wecube
Commits
e6b665f5
Commit
e6b665f5
authored
4 years ago
by
pobu168
Browse files
Options
Download
Email Patches
Plain Diff
remove limit to obtain plugins
parent
d5592273
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
wecube-portal/src/pages/collaboration/workflow-orchestration.vue
+12
-12
...portal/src/pages/collaboration/workflow-orchestration.vue
with
12 additions
and
12 deletions
+12
-12
wecube-portal/src/pages/collaboration/workflow-orchestration.vue
+
12
-
12
View file @
e6b665f5
...
...
@@ -197,7 +197,7 @@
v-for=
"(item, index) in pluginForm.paramInfos"
:key=
"index"
>
<label
slot=
"label"
v-if=
"
item.bindType === 'context' &&
item.required === 'Y'"
<label
slot=
"label"
v-if=
"item.required === 'Y'"
>
{{
item
.
paramName
}}
<span
class=
"requires-tip"
>
*
</span>
</label>
...
...
@@ -614,17 +614,17 @@ export default {
if
(
path
===
this
.
routineExpressionCache
)
{
return
}
const
lastSelectType
=
this
.
$refs
.
filterRules
&&
this
.
$refs
.
filterRules
.
lastSelectType
// 上下游节点不请求插件信息
if
(
lastSelectType
===
'
up
'
||
lastSelectType
===
'
down
'
)
{
this
.
$Notice
.
warning
({
title
:
'
Warning
'
,
desc
:
this
.
$t
(
'
obtain_plugin_warn
'
)
})
this
.
pluginForm
.
serviceId
=
''
this
.
filteredPlugins
=
[]
return
}
//
const lastSelectType = this.$refs.filterRules && this.$refs.filterRules.lastSelectType
//
//
上下游节点不请求插件信息
//
if (lastSelectType === 'up' || lastSelectType === 'down') {
//
this.$Notice.warning({
//
title: 'Warning',
//
desc: this.$t('obtain_plugin_warn')
//
})
//
this.pluginForm.serviceId = ''
//
this.filteredPlugins = []
//
return
//
}
let
pkg
=
''
let
entity
=
''
let
payload
=
{}
...
...
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
Menu
Projects
Groups
Snippets
Help