mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: 修复高级应用用户变量表头展示顺序问题
--bug=1047783 --user=刘瑞斌 【应用编排】-用户输入 参数表中,参数字段放在显示名称前面。 https://www.tapd.cn/57709429/s/1595946
This commit is contained in:
parent
2272e0b1cf
commit
2de52a3cfa
|
|
@ -13,13 +13,13 @@
|
|||
:data="props.nodeModel.properties.user_input_field_list"
|
||||
class="mb-16"
|
||||
>
|
||||
<el-table-column prop="field" label="参数" />
|
||||
<el-table-column prop="label" label="显示名称">
|
||||
<template #default="{ row }">
|
||||
<span v-if="row.label && row.label.input_type === 'TooltipLabel'">{{ row.label.label }}</span>
|
||||
<span v-else>{{ row.label }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="field" label="参数" />
|
||||
<el-table-column label="组件类型">
|
||||
<template #default="{ row }">
|
||||
<el-tag type="info" class="info-tag" v-if="row.input_type === 'TextInput'">文本框</el-tag>
|
||||
|
|
|
|||
Loading…
Reference in New Issue