12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template name="secondBrand">
- <view class="secondBrand">
- <view class="secondBrand-empty" v-if="product.brandInfo==''||product.brandInfo==null">暂无品牌信息</view>
- <p v-else>{{product.brandInfo}}</p>
- </view>
- </template>
- <script>
- export default{
- name:'secondBrand',
- data(){
- return{
- }
- },
- props:{
- product:{
- type:Object,
- },
- }
- }
- </script>
- <style>
- .secondBrand{
- width: 702rpx;
- margin: auto;
- }
- .secondBrand p{
- padding: 20rpx;
- font-size: 28rpx;
- color: #666666;
- line-height: 48rpx
- }
- .secondBrand-empty{
- width: 702rpx;
- height: 100rpx;
- line-height: 100rpx;
- padding: 0 24rpx;
- font-size: 28rpx;
- color: #999999;
- text-align: center;
- }
- </style>
|