Browse Source

[Fix-13928][UI] Fix repeat CustomParams input box (#14029)

3.2.0-release
imp2002 1 year ago committed by GitHub
parent
commit
920e9b80fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 46
      dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-datax.ts

46
dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-datax.ts

@ -102,7 +102,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
const destinationDatasourceSpan = ref(8)
const otherStatementSpan = ref(22)
const jobSpeedSpan = ref(12)
const customParameterSpan = ref(0)
const useResourcesSpan = ref(0)
const initConstants = () => {
@ -113,7 +112,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
destinationDatasourceSpan.value = 0
otherStatementSpan.value = 0
jobSpeedSpan.value = 0
customParameterSpan.value = 24
useResourcesSpan.value = 24
} else {
sqlEditorSpan.value = 24
@ -122,7 +120,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
destinationDatasourceSpan.value = 8
otherStatementSpan.value = 22
jobSpeedSpan.value = 12
customParameterSpan.value = 0
useResourcesSpan.value = 0
}
}
@ -238,49 +235,6 @@ export function useDataX(model: { [field: string]: any }): IJsonItem[] {
options: jobSpeedRecordOptions,
value: 1000
},
{
type: 'custom-parameters',
field: 'localParams',
name: t('project.node.custom_parameters'),
span: customParameterSpan,
children: [
{
type: 'input',
field: 'prop',
span: 10,
props: {
placeholder: t('project.node.prop_tips'),
maxLength: 256
},
validate: {
trigger: ['input', 'blur'],
required: true,
validator(validate: any, value: string) {
if (!value) {
return new Error(t('project.node.prop_tips'))
}
const sameItems = model.localParams.filter(
(item: { prop: string }) => item.prop === value
)
if (sameItems.length > 1) {
return new Error(t('project.node.prop_repeat'))
}
}
}
},
{
type: 'input',
field: 'value',
span: 10,
props: {
placeholder: t('project.node.value_tips'),
maxLength: 256
}
}
]
},
{
type: 'select',
field: 'xms',

Loading…
Cancel
Save