|
@@ -246,12 +246,12 @@
|
|
|
暂无定位
|
|
|
</view> -->
|
|
|
</view>
|
|
|
- <view class="sign">
|
|
|
+ <view class="sign min-h">
|
|
|
<view class="sign-1" v-if="item.giveDiscount">服务费{{item.discountRatio/10}}折</view>
|
|
|
<view class="sign-2" v-if="item.tagList.length != 0" v-for="(tagName,tagIndex) in item.tagList"
|
|
|
:key="tagIndex">{{tagName}}</view>
|
|
|
</view>
|
|
|
- <view class="price-free">
|
|
|
+ <view class="price-free ">
|
|
|
<view class="price">
|
|
|
<view class="price-1">
|
|
|
<view class="num">
|
|
@@ -1721,6 +1721,7 @@ export default {
|
|
|
font-weight: 600;
|
|
|
color: #101010;
|
|
|
}
|
|
|
+
|
|
|
.price-free{
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
@@ -1735,6 +1736,7 @@ font-weight: 600;
|
|
|
.price-1{
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
.num {
|
|
|
|
|
|
color: rgba(255, 98, 0, 100);
|
|
@@ -1884,12 +1886,16 @@ font-weight: 600;
|
|
|
border: 2px solid rgba(255, 255, 255, 100);
|
|
|
border-radius: 999px;
|
|
|
}
|
|
|
-
|
|
|
+ .min-h{
|
|
|
+ min-height: 65px;
|
|
|
+ }
|
|
|
.sign{
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
margin-top: 10px;
|
|
|
+
|
|
|
.sign-1{
|
|
|
+ height: 20px;
|
|
|
line-height: 20px;
|
|
|
border-radius: 4px;
|
|
|
background-color: rgba(255, 255, 255, 100);
|
|
@@ -1902,6 +1908,7 @@ font-weight: 600;
|
|
|
margin-bottom: 4px;
|
|
|
}
|
|
|
.sign-2{
|
|
|
+ height: 20px;
|
|
|
line-height: 20px;
|
|
|
border-radius: 4px;
|
|
|
background-color: rgba(255, 255, 255, 100);
|