feat: 高级应用用户输入参数增加选项卡类型
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run

This commit is contained in:
CaptainB 2024-11-25 16:51:59 +08:00 committed by 刘瑞斌
parent 8c34ac3594
commit ae86987358
2 changed files with 2 additions and 0 deletions

View File

@ -118,6 +118,7 @@ const inputTypeList = ref([
{ label: '文本框', value: 'TextInputConstructor' },
{ label: '单选框', value: 'SingleSelectConstructor' },
{ label: '多选框', value: 'MultiSelectConstructor' },
{ label: '选项卡', value: 'RadioCardConstructor' },
{ label: '日期', value: 'DatePickerConstructor' }
])

View File

@ -27,6 +27,7 @@
<el-tag type="info" class="info-tag" v-if="row.input_type === 'SwitchInput'">开关</el-tag>
<el-tag type="info" class="info-tag" v-if="row.input_type === 'SingleSelect'">单选框</el-tag>
<el-tag type="info" class="info-tag" v-if="row.input_type === 'MultiSelect'">多选框</el-tag>
<el-tag type="info" class="info-tag" v-if="row.input_type === 'RadioCard'">选项卡</el-tag>
<el-tag type="info" class="info-tag" v-if="row.input_type === 'DatePicker'">日期</el-tag>
</template>
</el-table-column>