|
|
|
@ -282,13 +282,14 @@ export default defineComponent({
|
|
|
|
|
> |
|
|
|
|
<NCheckbox |
|
|
|
|
checkedValue={'COMPLEMENT_DATA'} |
|
|
|
|
uncheckedValue={undefined} |
|
|
|
|
uncheckedValue={'START_PROCESS'} |
|
|
|
|
v-model:checked={this.startForm.execType} |
|
|
|
|
> |
|
|
|
|
{t('project.workflow.whether_complement_data')} |
|
|
|
|
</NCheckbox> |
|
|
|
|
</NFormItem> |
|
|
|
|
{this.startForm.execType && ( |
|
|
|
|
{this.startForm.execType && |
|
|
|
|
this.startForm.execType !== 'START_PROCESS' && ( |
|
|
|
|
<NSpace> |
|
|
|
|
<NFormItem |
|
|
|
|
label={t('project.workflow.mode_of_execution')} |
|
|
|
@ -315,7 +316,9 @@ export default defineComponent({
|
|
|
|
|
</NCheckbox> |
|
|
|
|
<NInput |
|
|
|
|
disabled={!this.parallelismRef} |
|
|
|
|
placeholder={t('project.workflow.please_enter_parallelism')} |
|
|
|
|
placeholder={t( |
|
|
|
|
'project.workflow.please_enter_parallelism' |
|
|
|
|
)} |
|
|
|
|
v-model:value={this.startForm.expectedParallelismNumber} |
|
|
|
|
/> |
|
|
|
|
</NFormItem> |
|
|
|
|