| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <div id="component-info-fragment" v-if="!storeInfo.status || storeInfo.status == 'OPENED'">
- <div class="component-info">
- <div class="head">
- <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">
- <div class="property-name">
- <span v-text="property.property.labelCn"></span>:
- </div>
- <div class="property-value" v-text="property.value"></div>
- </li>
- <li v-if="!component.properties || component.properties.length === 0" class="text-center">
- <i class="fa fa-smile-o fa-lg"></i> 暂无参数信息
- </li>
- </ul>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'component-info',
- computed: {
- storeInfo () {
- return this.$store.state.shop.storeInfo.store.data
- },
- component () {
- return this.$store.state.shop.storeInfo.component.data
- }
- }
- }
- </script>
- <style scoped>
- .component-info {
- width: 906px;
- margin-bottom: 16px;
- }
- .component-info .head {
- background-color: rgb(236, 242, 253);
- height: 40px;
- }
- .component-info ul .tab {
- width: 130px;
- }
- .component-info ul{
- padding-top: 15px;
- padding-bottom: 15px;
- }
- .component-info ul li {
- line-height: 30px;
- }
- .component-info .head {
- font-size: 14px;
- font-weight: 600;
- }
- .component-info .head .tab {
- line-height: 40px;
- margin-left: 10px;
- text-align: center;
- display: inline-block;
- }
- .component-info ul {
- border: 1px solid #D6D3CE;;
- }
- .component-info ul li {
- line-height: 30px;
- font-size: 12px;
- padding-left: 20px;
- }
- .component-info .property-name {
- width: 130px;
- float: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .component-info .property-value {
- float: left;
- width: 740px;
- }
- .tip {
- font-size: 12px;
- color: rgba(168, 181, 181, 0.79);
- margin-left: 5px;
- }
- .ng-hide{
- display: block !important;
- }
- </style>
|