|
@@ -31,7 +31,7 @@
|
|
|
</view>
|
|
|
<view class="purchaser-content-box-body">
|
|
|
<view class="purchaser-content-box-row" v-for="item in recentReportList" :key="item.ArticleId">
|
|
|
- <text class="purchaser-content-row-tag">
|
|
|
+ <text class="purchaser-content-row-tag" :style="{padding:item.ArticleTypeName.length==2?'4rpx 28rpx':'4rpx 15rpx'}">
|
|
|
{{item.ArticleTypeName}}
|
|
|
</text>
|
|
|
<view class="purchaser-content-row-title" :style="{ marginLeft: item.Title.substr(0, 1) != '【' ? '14rpx' : 0 }"
|
|
@@ -296,8 +296,9 @@ export default {
|
|
|
}
|
|
|
.purchaser-content-row-tag{
|
|
|
white-space: nowrap;
|
|
|
- padding: 4rpx 15rpx;
|
|
|
- min-width: 110rpx;
|
|
|
+ // padding: 4rpx 15rpx;
|
|
|
+ width: 110rpx;
|
|
|
+ // min-width: 110rpx;
|
|
|
height: 36rpx;
|
|
|
color: white;
|
|
|
font-size: 20rpx;
|
|
@@ -310,6 +311,11 @@ export default {
|
|
|
text-justify: inter-ideograph; // IE兼容
|
|
|
text-align-last: justify;
|
|
|
margin-right:8px ;
|
|
|
+ &:after{
|
|
|
+ content: "";
|
|
|
+ width: 110px;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
}
|
|
|
.purchaser-content-row-title{
|
|
|
-webkit-line-clamp: 2;
|