Commit 907b1ceb authored by Mac's avatar Mac

1

parent 9f9ab7c6
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
<text <text
class="numfont" class="numfont"
>{{ g.price}}</text> >{{ g.price}}</text>
<text v-if='g.car_type==5'>/人</text>
</view> </view>
<view class="sell u-skeleton-rect"> <view class="sell u-skeleton-rect">
<text class="oprice" v-if="setting.is_underline_price == 1">{{ g.original_price }}</text> <text class="oprice" v-if="setting.is_underline_price == 1">{{ g.original_price }}</text>
...@@ -255,10 +255,10 @@ ...@@ -255,10 +255,10 @@
<text class="btnsmall" :style="{ color: mc }">¥</text> <text class="btnsmall" :style="{ color: mc }">¥</text>
<text <text
class="btnnumfont" :style="{ color: mc }" class="btnnumfont" :style="{ color: mc }"
>{{ g.price*RideNum}}</text> >{{g.car_type==5? g.price*RideNum:g.price}}</text>
</view> </view>
<text style='font-size: 12px;margin-left: 5px;'>({{g.price}}*{{RideNum}})</text> <text style='font-size: 12px;margin-left: 5px;' v-if="g.car_type==5">({{g.price}}*{{RideNum}})</text>
</view> </view>
<view class='btnstyle' @click="goUrl()"> <view class='btnstyle' @click="goUrl()">
预订 预订
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
</view> </view>
</view> </view>
<view style="display: flex;flex-direction: column;align-items: flex-end;"> <view style="display: flex;flex-direction: column;align-items: flex-end;">
<view class="price" :style="{ color: mainColor ,'font-size':'16px'}" v-if="msg.CarType==5">¥{{x.price}}/人</view> <view class="price" :style="{ color: mainColor ,'font-size':'14px'}" v-if="msg.CarType==5">¥{{x.price}}/人</view>
<view class="price" :style="{ color: mainColor ,'font-size':'16px'}" v-if="msg.CarType!=5">¥{{x.price}}</view> <view class="price" :style="{ color: mainColor ,'font-size':'16px'}" v-if="msg.CarType!=5">¥{{x.price}}</view>
<!-- <view style=" color: #999999;font-size: 11px; ">总价¥{{x.price*msg.RideNum}}</view> --> <!-- <view style=" color: #999999;font-size: 11px; ">总价¥{{x.price*msg.RideNum}}</view> -->
</view> </view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment