Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jumpserver/lina-base:20250905_085804 AS stage-build
FROM jumpserver/lina-base:20250905_093747 AS stage-build

ARG VERSION
ENV VERSION=$VERSION
Expand Down
24 changes: 24 additions & 0 deletions src/views/assets/Platform/AutomationParamsSetting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
<script>
import Dialog from '@/components/Dialog'
import AutoDataForm from '@/components/Form/AutoDataForm'
import Select2 from '@/components/Form/FormFields/Select2'
import { DynamicInput, Switcher } from '@/components/Form/FormFields'
import DynamicWebParams from '@/views/assets/Platform/components/DynamicWebParams.vue'

export default {
components: {
Expand Down Expand Up @@ -100,6 +102,21 @@ export default {
commands: {
helpTextAsTip: false
}
},
'website_ping': {
steps: {
component: DynamicWebParams
}
},
'change_account_website': {
steps: {
component: DynamicWebParams
}
},
'verify_account_website': {
steps: {
component: DynamicWebParams
}
}
}
}
Expand Down Expand Up @@ -149,6 +166,13 @@ export default {
let component = 'el-input'
const el = {}
switch (v?.type) {
case 'choice':
component = Select2
el['multiple'] = false
el['clearable'] = false
el['value'] = v.default
el['options'] = v.choices
break
case 'list':
component = DynamicInput
break
Expand Down
Loading