File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 113113 <el-tag type =" info" class =" info-tag" v-if =" row.input_type === 'DatePicker'"
114114 >{{ $t('dynamicsForm.input_type_list.DatePicker') }}
115115 </el-tag >
116+ <el-tag type =" info" class =" info-tag" v-if =" row.input_type === 'JsonInput'"
117+ >{{ $t('dynamicsForm.input_type_list.JsonInput') }}
118+ </el-tag >
116119 </template >
117120 </el-table-column >
118121 <el-table-column :label =" $t('common.required')" >
Original file line number Diff line number Diff line change @@ -124,12 +124,14 @@ const currentRow = computed(() => {
124124const currentIndex = ref (null )
125125const inputTypeList = ref ([
126126 { label: t (' dynamicsForm.input_type_list.TextInput' ), value: ' TextInputConstructor' },
127+ { label: t (' dynamicsForm.input_type_list.Slider' ), value: ' SliderConstructor' },
127128 { label: t (' dynamicsForm.input_type_list.PasswordInput' ), value: ' PasswordInputConstructor' },
128129 { label: t (' dynamicsForm.input_type_list.SingleSelect' ), value: ' SingleSelectConstructor' },
129130 { label: t (' dynamicsForm.input_type_list.MultiSelect' ), value: ' MultiSelectConstructor' },
130131 { label: t (' dynamicsForm.input_type_list.RadioCard' ), value: ' RadioCardConstructor' },
131132 { label: t (' dynamicsForm.input_type_list.DatePicker' ), value: ' DatePickerConstructor' },
132133 { label: t (' dynamicsForm.input_type_list.SwitchInput' ), value: ' SwitchInputConstructor' },
134+ { label: t (' dynamicsForm.input_type_list.JsonInput' ), value: ' JsonInputConstructor' },
133135])
134136
135137const dialogVisible = ref <boolean >(false )
You can’t perform that action at this time.
0 commit comments