Style(商品详情):显示预计获得积分数调整

This commit is contained in:
lifizer
2024-09-24 22:22:08 +08:00
parent f30d06ea11
commit 8b7e35c182
+10 -1
View File
@@ -43,7 +43,11 @@
</view>
</view>
</view>
<view v-if="attr.productSelect.earnPoints" class="value value2 v12-font-24 v12-primary-text">
<view
v-if="attr.productSelect.earnPoints"
:class="couponListLimit2ToShow.length > 0 ? 'earn-points' : ''"
class="value value2 v12-font-24 v12-primary-text"
>
预计获得{{ attr.productSelect.earnPoints }}积分
</view>
<view
@@ -2058,4 +2062,9 @@ export default {
display: flex;
align-items: flex-end;
}
.earn-points {
flex: 1;
padding: 0 0 0 12rpx;
box-sizing: border-box;
}
</style>