forked from github/dataease
fix(视图): 修复阈值小数类型字段图标不显示的问题
This commit is contained in:
parent
23aea04795
commit
ad93321cb0
@ -68,7 +68,7 @@
|
||||
<span>
|
||||
<svg-icon v-if="fieldItem.field.deType === 0" icon-class="field_text" class="field-icon-text" />
|
||||
<svg-icon v-if="fieldItem.field.deType === 1" icon-class="field_time" class="field-icon-time" />
|
||||
<svg-icon v-if="fieldItem.field.deType === 2 || fieldItem.field.value === 3" icon-class="field_value" class="field-icon-value" />
|
||||
<svg-icon v-if="fieldItem.field.deType === 2 || fieldItem.field.deType === 3" icon-class="field_value" class="field-icon-value" />
|
||||
<svg-icon v-if="fieldItem.field.deType === 5" icon-class="field_location" class="field-icon-location" />
|
||||
</span>
|
||||
<span :title="fieldItem.field.name" class="field-text">{{ fieldItem.field.name }}</span>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<svg-icon v-if="fieldOption.deType === 0" icon-class="field_text" class="field-icon-text" />
|
||||
<svg-icon v-if="fieldOption.deType === 1" icon-class="field_time" class="field-icon-time" />
|
||||
<svg-icon
|
||||
v-if="fieldOption.deType === 2 || fieldOption.value === 3"
|
||||
v-if="fieldOption.deType === 2 || fieldOption.deType === 3"
|
||||
icon-class="field_value"
|
||||
class="field-icon-value"
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user