|
@@ -51,7 +51,10 @@
|
|
|
class="all-type-list-content commodity-list"
|
|
|
@click.stop="navToDetailPage(pros.productId)"
|
|
|
>
|
|
|
- <image mode="widthFix" :src="pros.image" class="list-img" alt="list-img"></image>
|
|
|
+ <view class="list-details-image">
|
|
|
+ <image mode="widthFix" :src="pros.image" class="list-img" alt="list-img"></image>
|
|
|
+ <view class="list-details-type">医疗器械</view>
|
|
|
+ </view>
|
|
|
<view class="list-details-info">
|
|
|
<text class="list-details-title">{{ isInterceptHtmlFn(pros.name) }}</text>
|
|
|
<text class="list-details-specs">规格:{{ pros.unit ? pros.unit : '' }}</text>
|
|
@@ -858,12 +861,32 @@ export default {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
box-sizing: content-box;
|
|
|
- .list-img {
|
|
|
- width: 312rpx;
|
|
|
- height: 207rpx !important;
|
|
|
+ .list-details-image{
|
|
|
+ width: 218rpx;
|
|
|
+ height: 218rpx !important;
|
|
|
margin-right: 26rpx;
|
|
|
border-radius: 10rpx;
|
|
|
border: 2rpx solid #f3f3f3;
|
|
|
+ position: relative;
|
|
|
+ .list-img {
|
|
|
+ width: 218rpx;
|
|
|
+ height: 218rpx !important;
|
|
|
+ }
|
|
|
+ .list-details-type{
|
|
|
+ width: 64rpx;
|
|
|
+ height: 64rpx;
|
|
|
+ text-align: justify;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 10rpx;
|
|
|
+ border-radius: 0 0 8rpx 8rpx;
|
|
|
+ background-color: #33CCBF;
|
|
|
+ font-size: $font-size-22;
|
|
|
+ color: #FFFFFF;
|
|
|
+ line-height: 25rpx;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 10rpx;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.zuhe-list-content {
|