Skip to content

Commit 2a00c5b

Browse files
committed
feat: 高级应用用户输入参数增加选项卡类型
1 parent 8c34ac3 commit 2a00c5b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

ui/src/workflow/nodes/base-node/component/UserFieldFormDialog.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ const inputTypeList = ref([
118118
{ label: '文本框', value: 'TextInputConstructor' },
119119
{ label: '单选框', value: 'SingleSelectConstructor' },
120120
{ label: '多选框', value: 'MultiSelectConstructor' },
121+
{ label: '选项卡', value: 'RadioCardConstructor' },
121122
{ label: '日期', value: 'DatePickerConstructor' }
122123
])
123124

ui/src/workflow/nodes/base-node/component/UserInputFieldTable.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<el-tag type="info" class="info-tag" v-if="row.input_type === 'SwitchInput'">开关</el-tag>
2828
<el-tag type="info" class="info-tag" v-if="row.input_type === 'SingleSelect'">单选框</el-tag>
2929
<el-tag type="info" class="info-tag" v-if="row.input_type === 'MultiSelect'">多选框</el-tag>
30+
<el-tag type="info" class="info-tag" v-if="row.input_type === 'RadioCard'">选项卡</el-tag>
3031
<el-tag type="info" class="info-tag" v-if="row.input_type === 'DatePicker'">日期</el-tag>
3132
</template>
3233
</el-table-column>

0 commit comments

Comments
 (0)