调整企业基础信息数据格式增加商品权证管理发型模块

This commit is contained in:
唐明明
2021-09-06 17:28:06 +08:00
parent 291c97eabc
commit f472df0cfa
17 changed files with 3242 additions and 1043 deletions

View File

@@ -15,8 +15,13 @@
<view class="price cny" v-if="priceType === 'CNY'">
<text></text>{{item.original_price}}
</view>
<view class="sales">已易{{item.sales}}</view>
<view class="sales">
<slot name="statistics" :value="item">
已易{{item.sales}}
</slot>
</view>
</view>
<slot name="footer" :value="item" />
</view>
</view>
</block>
@@ -92,14 +97,16 @@ export default {
@extend .ellipsis;
}
.content-flex{
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-end;
padding-top: $padding/2;
.price{
width: 50%;
color: $text-price;
font-weight: bold;
font-size: $title-size;
@extend .nowrap;
text{
font-size: $title-size-sm;
font-weight: normal;
@@ -108,9 +115,12 @@ export default {
}
}
.sales{
width: 50%;
font-size: $title-size-sm;
color: $text-gray;
line-height: 50rpx;
text-align: right;
@extend .nowrap;
}
}
}