fix: 参数配置DNN List参数显示null问题
This commit is contained in:
@@ -1417,7 +1417,7 @@ onMounted(() => {
|
|||||||
{{ text.comment }}
|
{{ text.comment }}
|
||||||
</template>
|
</template>
|
||||||
<div class="editable-cell">
|
<div class="editable-cell">
|
||||||
<template v-if="text.array && Array.isArray(text.value)">
|
<template v-if="text.array">
|
||||||
<a-button
|
<a-button
|
||||||
type="default"
|
type="default"
|
||||||
size="small"
|
size="small"
|
||||||
@@ -1431,7 +1431,11 @@ onMounted(() => {
|
|||||||
}}
|
}}
|
||||||
</a-button>
|
</a-button>
|
||||||
<!--特殊字段拓展显示-->
|
<!--特殊字段拓展显示-->
|
||||||
<span v-if="text.name === 'dnnList'">
|
<span
|
||||||
|
v-if="
|
||||||
|
text.name === 'dnnList' && Array.isArray(text.value)
|
||||||
|
"
|
||||||
|
>
|
||||||
({{
|
({{
|
||||||
text.value.length > 4
|
text.value.length > 4
|
||||||
? `${text.value
|
? `${text.value
|
||||||
|
|||||||
Reference in New Issue
Block a user