|
|
@@ -5,13 +5,13 @@
|
|
|
<span class="tab">产品参数<b class="tip">(仅供参考,以实际产品为准)</b></span>
|
|
|
</div>
|
|
|
<ul class="list-unstyled list-inline" style="margin-left: 0px;" v-if="component.properties">
|
|
|
- <li v-for="property in component.properties" v-if="property.value">
|
|
|
+ <li v-for="property in component.properties">
|
|
|
<div class="property-name">
|
|
|
<span v-text="property.property.labelCn"></span>:
|
|
|
</div>
|
|
|
- <div class="property-value" v-text="property.value"></div>
|
|
|
+ <div class="property-value">{{property.value ? property.value : '-'}}</div>
|
|
|
</li>
|
|
|
- <li v-if="!component.properties || component.properties.length === 0" class="text-center">
|
|
|
+ <li v-if="!component.properties || component.properties.length === 0" class="text-center" style="display:block;margin-top:0;">
|
|
|
<i class="fa fa-smile-o fa-lg"></i> 暂无参数信息
|
|
|
</li>
|
|
|
</ul>
|